Created
January 17, 2013 20:07
-
-
Save nmsdvid/4559253 to your computer and use it in GitHub Desktop.
Retina Background Image w CSS
This file contains hidden or 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
/* for low resolution display */ | |
.image { | |
background-image: url(/path/to/my/lowreslogo.png); | |
background-size: 200px 300px; | |
height: 300px; | |
width: 200px; | |
} | |
/* for high resolution display */ | |
@media only screen and (min--moz-device-pixel-ratio: 2), | |
only screen and (-o-min-device-pixel-ratio: 2/1), | |
only screen and (-webkit-min-device-pixel-ratio: 2), | |
only screen and (min-device-pixel-ratio: 2) { | |
.image { | |
background: url(/path/to/my/highreslogo.png) no-repeat; | |
background-size: 200px 400px; | |
/* rest of your styles... */ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment