Last active
December 21, 2015 06:39
-
-
Save cdl/6265427 to your computer and use it in GitHub Desktop.
I really want this to be a thing in CSS.
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
CSS: | |
.link-$service { | |
background-image: url("img/$service.png"); | |
} | |
HTML: | |
<a href="#" class="link-twitter">link</a> | |
Applied property in DOM: | |
.link-twitter { | |
background-image: url("img/twitter.png"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment