Skip to content

Instantly share code, notes, and snippets.

@steinsag
Created January 16, 2013 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steinsag/4551639 to your computer and use it in GitHub Desktop.
Save steinsag/4551639 to your computer and use it in GitHub Desktop.
Simple media query to add a background image only on a certain minimum page width.
@media ( min-width : 768px ) {
#page_wrap hgroup {
background: #fff url('images/skyline.jpg') no-repeat right bottom;
min-height: 118px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment