Created
August 27, 2012 20:48
-
-
Save leostratus/3492086 to your computer and use it in GitHub Desktop.
Media Query w/all vendor prefixes required for high PPI devices (eg. Retina display iPhone 4)
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 only screen and (-webkit-min-device-pixel-ratio: 1.5), | |
only screen and (min--moz-device-pixel-ratio: 1.5), | |
only screen and (-o-device-pixel-ratio: 3/2), | |
only screen and (min-device-pixel-ratio: 1.5) { | |
/* High-res version of image assets go here */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey,
Have you seen: https://gist.github.com/marcedwards/3446599
We're just testing it out now and it seems pretty useful.
Kyle