Skip to content

Instantly share code, notes, and snippets.

@thotbox
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save thotbox/4fb520ebcf55567c83df to your computer and use it in GitHub Desktop.

Select an option

Save thotbox/4fb520ebcf55567c83df to your computer and use it in GitHub Desktop.
CSS: Retina Media Queries
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
#header { background: url('/themes/site_themes/site/img/header-image-retina.jpg'); }
}
@media only screen and (min--moz-device-pixel-ratio: 2) {
#header { background: url('/themes/site_themes/site/img/header-image-retina.jpg'); }
}
@media only screen and (-o-min-device-pixel-ratio: 2/1) {
#header { background: url('/themes/site_themes/site/img/header-image-retina.jpg'); }
}
@media only screen and (min-device-pixel-ratio: 2) {
#header { background: url('/themes/site_themes/site/img/header-image-retina.jpg'); }
}
@media only screen and (min-resolution: 192dpi) {
#header { background: url('/themes/site_themes/site/img/header-image-retina.jpg'); }
}
@media only screen and (min-resolution: 2dppx) {
#header { background: url('/themes/site_themes/site/img/header-image-retina.jpg'); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment