Skip to content

Instantly share code, notes, and snippets.

@Dianakc
Created July 9, 2013 23:03
Show Gist options
  • Save Dianakc/4e51d93097b6b58bf2c8 to your computer and use it in GitHub Desktop.
Save Dianakc/4e51d93097b6b58bf2c8 to your computer and use it in GitHub Desktop.
Media queries básica :P
@media screen and (max-width:320px) {}
@media screen and (min-width:321px) and (max-width:639px) {}
@media screen and (min-width:640px) and (max-width:959px) {}
@media screen and (min-width:960px) and (max-width:1279px) {}
@media screen and (min-width:1280px) and (max-width:1599px) {}
@media screen and (min-width:1600px) {}
@media screen and (min-width:1920px) {}
@media print {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment