Created
August 13, 2012 19:53
-
-
Save jeffreygnatek/3343631 to your computer and use it in GitHub Desktop.
basic retina / high res media query
This file contains 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--moz-device-pixel-ratio: 1.5), | |
(-o-min-device-pixel-ratio: 3/2), | |
(-webkit-min-device-pixel-ratio: 1.5), | |
(min-resolution: 1.5dppx) { | |
#selector { | |
background-image: url([email protected]); | |
background-size: 15px auto; /* example */ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment