Skip to content

Instantly share code, notes, and snippets.

@SimonWpt
Created October 15, 2012 07:53
Show Gist options
  • Save SimonWpt/3891278 to your computer and use it in GitHub Desktop.
Save SimonWpt/3891278 to your computer and use it in GitHub Desktop.
Small sass-mixin for the use of retina-images
body
background: url("bg.png") no-repeat
@include image-2x("bg.png", 100px, 25px)
@mixin image-2x($image, $width, $height)
@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)
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