Skip to content

Instantly share code, notes, and snippets.

@chrisslater
Created January 9, 2013 14:25
Show Gist options
  • Save chrisslater/4493510 to your computer and use it in GitHub Desktop.
Save chrisslater/4493510 to your computer and use it in GitHub Desktop.
Target devices by the CSS resolution property.
/**
* 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