Skip to content

Instantly share code, notes, and snippets.

@adamcbrewer
Created January 18, 2014 15:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamcbrewer/8492041 to your computer and use it in GitHub Desktop.
Save adamcbrewer/8492041 to your computer and use it in GitHub Desktop.
CSS: HD Media Query Snippet
@media (-webkit-min-device-pixel-ratio: 2),
(min--moz-min-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
.logo {
background-image: url(../img/logo@2x.png);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment