Created
June 16, 2011 15:05
-
-
Save johngag/1029435 to your computer and use it in GitHub Desktop.
CSS Media Query Example
This file contains hidden or 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 only screen and (max-device-width: 800px) { | |
#wrap { | |
margin: 0; padding: 0; | |
width: 320px; | |
background: url(../../images/bg_header.png) repeat-x; | |
} | |
#header { | |
margin: 0 auto; padding: 15px 10px 0 0; | |
width: 320px; height: 116px; | |
background: url(../../images/bg_header_overlay.png) no-repeat 0 50%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment