Skip to content

Instantly share code, notes, and snippets.

@jensgro
Created September 2, 2011 15:56
Show Gist options
  • Save jensgro/1188997 to your computer and use it in GitHub Desktop.
Save jensgro/1188997 to your computer and use it in GitHub Desktop.
Beispiele für Media-Queries
/* normal screen layout */
@media screen and (min-width: 760px) {}
/* smaller devices */
@media screen and (min-width: 481px) and (max-width: 759px) {}
/* mobile */
@media screen and (max-width: 480px) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment