Created
May 12, 2011 15:35
-
-
Save saturngod/968766 to your computer and use it in GitHub Desktop.
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 and (max-width:480px){ | |
#content { | |
width:470px; | |
} | |
} | |
@media screen and (max-width:320px){ | |
#content { | |
width:310px; | |
} | |
} | |
@media screen and (min-width:1200px) and (max-width:1800px){ | |
body { | |
background-image:url('bigimage.jpg'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment