Skip to content

Instantly share code, notes, and snippets.

Created December 27, 2012 17:51
Show Gist options
  • Save anonymous/4390330 to your computer and use it in GitHub Desktop.
Save anonymous/4390330 to your computer and use it in GitHub Desktop.
safari only css for retina displays
<style type="text/css" media="screen">
#test{ background-color: #ddd; }
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
html>body #test { background-color: red }
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment