Skip to content

Instantly share code, notes, and snippets.

@ranbena
Created December 26, 2012 17:08
Show Gist options
  • Save ranbena/4381543 to your computer and use it in GitHub Desktop.
Save ranbena/4381543 to your computer and use it in GitHub Desktop.
High density display
<html>
<head>
...
<link rel='stylesheet' href='retina.css' media='only screen and (min-device-pixel-ratio: 2)' />
...
</head>
<body>
if (window.devicePixelRatio === 2) {
// do something
}
.logo {
background-image: url('logo.png');
}
@media only screen and (min-device-pixel-ratio: 2) {
.logo {
background-image: url('logo@2x.png');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment