Created
January 16, 2014 11:36
-
Star
(126)
You must be signed in to star a gist -
Fork
(43)
You must be signed in to fork a gist
-
-
Save janily/8453473 to your computer and use it in GitHub Desktop.
Mobile-first CSS Media Queries Breakpoints
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (min-width:320px) { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ } | |
@media (min-width:480px) { /* smartphones, Android phones, landscape iPhone */ } | |
@media (min-width:600px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ } | |
@media (min-width:801px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ } | |
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ } | |
@media (min-width:1281px) { /* hi-res laptops and desktops */ } |
great!
Thanks!
very useful!
Boa man
Obrigada! TKS!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
great!