Created
April 12, 2013 06:41
-
-
Save mduvall/5369958 to your computer and use it in GitHub Desktop.
Some example media queries.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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