Skip to content

Instantly share code, notes, and snippets.

@brycejacobson
Forked from jonbellah/Single media query
Created July 23, 2013 13:12
Show Gist options
  • Save brycejacobson/6062245 to your computer and use it in GitHub Desktop.
Save brycejacobson/6062245 to your computer and use it in GitHub Desktop.
CSS for retina logo using background image.
.logo {
background: url(images/example.jpg);
}
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
.logo {
background: url(images/[email protected]);
background-size: 100px 100px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment