Update README.md

This commit is contained in:
Adam Kaplan 2014-02-16 15:53:25 -06:00
parent b582c64462
commit db72041a07

View file

@ -12,6 +12,8 @@ As of 2013, there are thousands of different devices and screen sizes that brows
####Mobile First
The term “mobile first” gets thrown around a lot lately. What it really means is to start with mobile styles and layer on styles optimized for larger screens only as needed. In other words, your mobile styles become the default and you no longer have to override them later. Its much simpler!
> By assuming a flexible but simple layout by default, you can better guard against browsers—with viewports wide and small—that arent quite capable of the full responsive layout. “Mobile first” really means “progressive enhancement.” —Ethan Marcotte
##Min-width Media Queries
Introduce layout-specific rules only when you need them. Use `min-width` to layer complexity on your layout as the viewport widens. Its easier to have all the media queries nearby, rather than at the end of the stylesheet or in a separate document.