Skip to content

Instantly share code, notes, and snippets.

@othersmallcities
Last active December 30, 2015 10:49
Show Gist options
  • Save othersmallcities/7818981 to your computer and use it in GitHub Desktop.
Save othersmallcities/7818981 to your computer and use it in GitHub Desktop.
Regina ready background images, non-scss version...
element {
background:url("path/to/image-1x") no-repeat;
}
@media (min--moz-device-pixel-ratio: 1.3),
(-o-min-device-pixel-ratio: 2.6 / 2),
(-webkit-min-device-pixel-ratio: 1.3),
(min-device-pixel-ratio: 1.3),
(min-resolution: 1.3dppx) {
element {
background-image: url("path/to/image-2x");
background-size: [width] [height];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment