Created
November 28, 2012 15:16
-
-
Save madrobby/4161897 to your computer and use it in GitHub Desktop.
Retina screen 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-device-pixel-ratio: 1.5), | |
(min-resolution: 144dpi), | |
(min-resolution: 1.5dppx) { | |
/* Retina rules! */ | |
} |
Sorry, scrap that. It does work.
For some reason, however, 3/2 is giving me an error. It's fine when I replace it with 1.5. It might have to do with the fact I'm using gss.
Thanks,
Maddy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Your query doesn't work for Chrome on my Macbook Pro Retina 13.3".
It works fine for Firefox and Safari. Thanks very much in advance!
Maddy