Skip to content

Instantly share code, notes, and snippets.

@mduvall
Created April 12, 2013 06:41
Show Gist options
  • Save mduvall/5369958 to your computer and use it in GitHub Desktop.
Save mduvall/5369958 to your computer and use it in GitHub Desktop.
Some example media queries.
@media screen {
body {
width: 75%;
}
}
@media print {
body {
width: 100%;
}
}
@media all and (max-width: 699px) and (min-width: 520px), (min-width: 1151px) {
body {
background: #ccc;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment