Skip to content

Instantly share code, notes, and snippets.

@CB9TOIIIA
Created March 1, 2016 08:34
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 CB9TOIIIA/838736907eeb28751186 to your computer and use it in GitHub Desktop.
Save CB9TOIIIA/838736907eeb28751186 to your computer and use it in GitHub Desktop.
MEDIA QUERIES CSS
/*********************
MEDIA QUERIES
*********************/
@media screen and (min-width: 220px) and (max-width: 480px) { }
@media screen and (min-width: 481px) and (max-width: 767px) { }
@media screen and (min-width: 768px) and (max-width: 992px) { }
@media screen and (min-width: 993px) and (max-width: 1200px) { }
@media screen and (min-width: 1200px) and (max-width: 1365px) { }
@media screen and (min-width: 1366px) { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment