Skip to content

Instantly share code, notes, and snippets.

@aaronrussell
Created July 11, 2010 17:24
Show Gist options
  • Save aaronrussell/471694 to your computer and use it in GitHub Desktop.
Save aaronrussell/471694 to your computer and use it in GitHub Desktop.
div {
background-image: url('/images/background.png');
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
background-image: url('/images/hi-background.png');
}
}
/*
Mixin for creating both standard background image
and hi-res iPhone 4 background image
*/
@mixin dual-bg-image($image) {
background-image: image_url($image);
// media query from: http://miniapps.co.uk/blog/post/targeting-iphone-4-using-css-media-queries/
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
background-image: image_url('hi-'+$image);
}
}
div {
@include dual-bg-image('background.png');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment