Skip to content

Instantly share code, notes, and snippets.

@bm2ilabs
Forked from janily/Breakpoints
Created September 26, 2019 04:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bm2ilabs/af6042fb0a19a535bd6cf38d7f87270a to your computer and use it in GitHub Desktop.
Save bm2ilabs/af6042fb0a19a535bd6cf38d7f87270a to your computer and use it in GitHub Desktop.
Mobile-first CSS Media Queries Breakpoints
@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 */ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment