Created
November 11, 2013 15:21
-
-
Save jeffturcotte/7414813 to your computer and use it in GitHub Desktop.
device pixel ratio media query
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
#logo { | |
background-image: url('/images/my_image.png'); | |
} | |
@media all and (-webkit-min-device-pixel-ratio: 1.5) { | |
#logo { | |
background-image: url('/images/[email protected]'); | |
background-size: 200px 100px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment