Skip to content

Instantly share code, notes, and snippets.

@arcreative
arcreative / img.html
Last active December 14, 2015 20:39
IMG tag retina implementation
<img src=”images/logo.png” data-src2x=”images/logo-2x.png” width=”200” height=”80” />
@arcreative
arcreative / retina.css
Last active December 14, 2015 20:40
Retina media query implementation
.sprite.logo {
background: url(logo.png);
width: 200px;
height: 80px;
}
@media
only screen and (min-device-pixel-ratio: 2),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-moz-min-device-pixel-ratio: 2),