Created
November 30, 2012 19:41
-
-
Save ginader/4178039 to your computer and use it in GitHub Desktop.
retina media queries
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
// taken from this article: | |
// http://www.brettjankord.com/2012/11/28/cross-browser-retinahigh-resolution-media-queries/ | |
@media | |
only screen and (-webkit-min-device-pixel-ratio: 2), | |
only screen and (min-resolution: 192dpi) { | |
/* Retina-specific stuff here */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment