Created
September 10, 2015 10:17
-
-
Save vm137/18bb9799f71daa0a3a54 to your computer and use it in GitHub Desktop.
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
#myimage { | |
width: 400px; | |
height: 300px; | |
background: url(lo-res.jpg) 0 0 no-repeat; | |
} | |
@media | |
screen and (-webkit-min-device-pixel-ratio: 1.5), | |
screen and (-moz-min-device-pixel-ratio: 1.5), | |
screen and (min-device-pixel-ratio: 1.5) { | |
#myimage { | |
background-image: url(hi-res.jpg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://www.sitepoint.com/support-retina-displays/
http://www.leemunroe.com/designing-for-high-resolution-retina-displays/
http://code.tutsplus.com/tutorials/the-right-way-to-retinafy-your-websites--net-31793