Skip to content

Instantly share code, notes, and snippets.

@Takazudo
Created March 10, 2011 14:11
Show Gist options
  • Save Takazudo/864138 to your computer and use it in GitHub Desktop.
Save Takazudo/864138 to your computer and use it in GitHub Desktop.
how to handle high res display.
/* load http://www.modernizr.com/ then, do following for Retina display. */
.className {
background:url(test@1x.png); /* low res img */
}
@media only screen and (-webkit-min-device-pixel-ratio:2) {
.backgroundsize .className {
background:url(test@2x.png); /* high res img */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment