Skip to content

Instantly share code, notes, and snippets.

@cdl
Last active December 21, 2015 06:39
Show Gist options
  • Save cdl/6265427 to your computer and use it in GitHub Desktop.
Save cdl/6265427 to your computer and use it in GitHub Desktop.
I really want this to be a thing in CSS.
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