Created
January 16, 2013 22:41
-
-
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.
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 ( 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