Last active
December 28, 2015 03:09
-
-
Save quawn/7432773 to your computer and use it in GitHub Desktop.
CSS: Background image for Retina
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 (-webkit-min-device-pixel-ratio: 2), | |
(min-resolution: 192dpi) { | |
.box{ | |
background:url('images/[email protected]') no-repeat top left; | |
background-size: 200px 200px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment