Created
July 27, 2012 20:10
-
-
Save adparadise/3190223 to your computer and use it in GitHub Desktop.
Background Images 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
.header { | |
background: url(headerImage.png); | |
} | |
@media only screen and (-webkit-min-device-pixel-ratio: 2), | |
only screen and (min-device-pixel-ratio: 2) { | |
.header { | |
background: url(headerImage-hires.png); | |
background-size: 50%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment