Skip to content

Instantly share code, notes, and snippets.

View hitoyam's full-sized avatar

Hitoyam hitoyam

  • Gaji-Labo Inc.
  • Tokyo, JAPAN
View GitHub Profile
@Takazudo
Takazudo / bgImgForRetina.css
Created March 10, 2011 14:11
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 */
}
}