Skip to content

Instantly share code, notes, and snippets.

@jeffturcotte
Created November 11, 2013 15:21
Show Gist options
  • Save jeffturcotte/7414813 to your computer and use it in GitHub Desktop.
Save jeffturcotte/7414813 to your computer and use it in GitHub Desktop.
device pixel ratio media query
#logo {
background-image: url('/images/my_image.png');
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
#logo {
background-image: url('/images/my_image@2x.png');
background-size: 200px 100px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment