Skip to content

Instantly share code, notes, and snippets.

@kameltovic
Forked from elimc/gist:3558868
Created September 1, 2012 23:32
Show Gist options
  • Save kameltovic/3591171 to your computer and use it in GitHub Desktop.
Save kameltovic/3591171 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