Skip to content

Instantly share code, notes, and snippets.

@robertbiswas
Last active May 8, 2018 21:15
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 robertbiswas/48245ac247725b1254e4ae7562650446 to your computer and use it in GitHub Desktop.
Save robertbiswas/48245ac247725b1254e4ae7562650446 to your computer and use it in GitHub Desktop.
Non Mobile First Media Queries
/* Mixed up with Bootstrap 4 */
// Large Devices, Wide Screens
@media only screen and (max-width : 1200px){
}
// Medium Devices, Ipad portait
@media only screen and (max-width : 992px){
}
// Small Devices, Tablets
@media only screen and (max-width : 768px){
}
// Small landscape
@media only screen and (max-width : 576px){
}
// Extra Small Devices, Phones
@media only screen and (max-width : 480px){
}
// Custom, iPhone 5/SE Retina
@media only screen and (max-width : 320px){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment