Skip to content

Instantly share code, notes, and snippets.

@0632347878
Created October 2, 2016 12:00
Show Gist options
  • Save 0632347878/489246811bf248ab6de87280373c86d8 to your computer and use it in GitHub Desktop.
Save 0632347878/489246811bf248ab6de87280373c86d8 to your computer and use it in GitHub Desktop.
Media queries
/*Smartphones*/
@media only screen and (max-width: 480px) {}
/* Small devices (tablets, 768px and up) */
@media only screen and (max-width: 767px) {}
/* Medium devices (desktops, 992px and up) */
@media only screen and (max-width: 992px) {}
/* Large devices (large desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment