Skip to content

Instantly share code, notes, and snippets.

@jeffreygnatek
Created August 13, 2012 19:53
Show Gist options
  • Save jeffreygnatek/3343631 to your computer and use it in GitHub Desktop.
Save jeffreygnatek/3343631 to your computer and use it in GitHub Desktop.
basic retina / high res media query
@media (min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 1.5dppx) {
#selector {
background-image: url(image@2x.png);
background-size: 15px auto; /* example */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment