Skip to content

Instantly share code, notes, and snippets.

@juanjunger
Created August 28, 2020 15:06
Show Gist options
  • Save juanjunger/649eaae533f6f2181449bf84cb16a2d7 to your computer and use it in GitHub Desktop.
Save juanjunger/649eaae533f6f2181449bf84cb16a2d7 to your computer and use it in GitHub Desktop.
CSS Media Queries Breakpoints
@media screen and (min-width:320px) { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ }
@media screen and (min-width:480px) { /* smartphones, Android phones, landscape iPhone */ }
@media screen and (min-width:600px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ }
@media screen and (min-width:801px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media screen and (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media screen and (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