Skip to content

Instantly share code, notes, and snippets.

@codatory
Created July 19, 2012 17:43
Show Gist options
  • Save codatory/3145571 to your computer and use it in GitHub Desktop.
Save codatory/3145571 to your computer and use it in GitHub Desktop.
<img src="foo.jpg" class="lowres" /><img src="foo2x.jpg" class="hires" />
.hires {
display:none;
}
@media only screen and (min-device-pixel-ratio: 2) {
.hires { display: block; }
.lowres { display: none; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment