Created
August 31, 2012 20:56
-
-
Save elimc/3558868 to your computer and use it in GitHub Desktop.
Retina CSS example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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/[email protected]) 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