Skip to content

Instantly share code, notes, and snippets.

@ginader
Created November 30, 2012 19:41
Show Gist options
  • Save ginader/4178039 to your computer and use it in GitHub Desktop.
Save ginader/4178039 to your computer and use it in GitHub Desktop.
retina media queries
// taken from this article:
// http://www.brettjankord.com/2012/11/28/cross-browser-retinahigh-resolution-media-queries/
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi) {
/* Retina-specific stuff here */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment