Skip to content

Instantly share code, notes, and snippets.

@quawn
Last active December 28, 2015 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quawn/7432773 to your computer and use it in GitHub Desktop.
Save quawn/7432773 to your computer and use it in GitHub Desktop.
CSS: Background image for Retina
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
.box{
background:url('images/box-bg@2x.png') no-repeat top left;
background-size: 200px 200px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment