Created
January 9, 2013 14:25
-
-
Save chrisslater/4493510 to your computer and use it in GitHub Desktop.
Target devices by the CSS resolution property.
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
/** | |
* Device Resolution @media snippet. | |
* Target devices by the CSS resolution property. IE10 doesn't support ppx, so convert to dpi by | |
* multiplying the dppx value by 96. | |
*/ | |
@media (min-resolution: 2ppx),(min-resolution: 192ppi) { | |
/* add properties here */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment