Skip to content

Instantly share code, notes, and snippets.

@elimc
Created August 31, 2012 20:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save elimc/3558868 to your computer and use it in GitHub Desktop.
Save elimc/3558868 to your computer and use it in GitHub Desktop.
Retina CSS example
@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5)
{
#test {
background: url(../images/test@2.png) no-repeat center center;
-webkit-background-size: 25px 25px;
-moz-background-size: 25px 25px;
background-size: 25px 25px;
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment