Last active
August 29, 2015 14:27
-
-
Save samzeng/bf0800d3e5ed2ff3f397 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Use media queries for high-res CSS styles */ | |
.demo { | |
background-image: url(test.png); | |
} | |
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { | |
background-image: url([email protected]); | |
} | |
/* image-set W3C: http://dev.w3.org/csswg/css-images/#image-set-notation */ | |
.demo { | |
background: url(test.png); /* do not support `image-set` */ | |
background: -webkit-image-set( | |
url(test.png) 1x, /* normal displays */ | |
url([email protected]) 2x /* high-res retina displays */ | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment