Skip to content

Instantly share code, notes, and snippets.

@salipro4ever
Forked from bergantine/gist:2114328
Created January 6, 2014 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salipro4ever/8277276 to your computer and use it in GitHub Desktop.
Save salipro4ever/8277276 to your computer and use it in GitHub Desktop.
<style>
/* from http://www.mobilexweb.com/blog/ios-5-1-new-ipad-web-developers */
@media screen and (-webkit-device-pixel-ratio: 2) {
/* retina display */
}
</style>
<script>
// from https://developer.mozilla.org/en/DOM/window.matchMedia
if (window.matchMedia("(-webkit-device-pixel-ratio: 2)").matches) {
/* retina display */
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment