Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jswebschmiede/5250377 to your computer and use it in GitHub Desktop.
Save jswebschmiede/5250377 to your computer and use it in GitHub Desktop.
/**
* Author: @joostkiens
* Licensed under the MIT license
*/
@mixin hr-image($image, $width, $height) {
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(-o-min-device-pixel-ratio: 5/4),
(min-resolution: 120dpi) {
background-image: url($image);
background-size: $width $height;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment