Last active
October 11, 2015 12:07
-
-
Save thomasjbradley/3856091 to your computer and use it in GitHub Desktop.
css: svg to png
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
.icon { | |
background: transparent url("../img/icon.svg") no-repeat left top; | |
} | |
/* Depends on Modernizr */ | |
.no-inlinesvg .icon { | |
background-image: url("../img/icon.png"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment