Skip to content

Instantly share code, notes, and snippets.

@johngag
Created June 16, 2011 15:05
Show Gist options
  • Save johngag/1029435 to your computer and use it in GitHub Desktop.
Save johngag/1029435 to your computer and use it in GitHub Desktop.
CSS Media Query Example
@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