Created
November 14, 2016 06:08
-
-
Save kalpeshhpatel/1d3617350447d023ba7b3f18c95e1578 to your computer and use it in GitHub Desktop.
CSS media query to target retina displays
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
@media | |
only screen and (-webkit-min-device-pixel-ratio: 2), | |
only screen and ( min--moz-device-pixel-ratio: 2), | |
only screen and ( -o-min-device-pixel-ratio: 2/1), | |
only screen and ( min-device-pixel-ratio: 2), | |
only screen and ( min-resolution: 192dpi), | |
only screen and ( min-resolution: 2dppx) { | |
/* Retina-specific stuff here */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment