-
-
Save zerolab/1478343 to your computer and use it in GitHub Desktop.
Terse Font Icons
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
a[data-icon]:before, | |
span[data-icon]:before { | |
font-family: 'Icon Font Here'; | |
content: attr(data-icon); | |
} | |
/* | |
This would also work, but other web developers might | |
yell at you about "performance" which may/not matter: | |
*/ | |
*[data-icon]:before { | |
font-family: 'Icon Font Here'; | |
content: attr(data-icon); | |
} |
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
<!-- Assuming "+" is your font's Add icon --> | |
<a data-icon="+" href="..."> | |
Add | |
</a> | |
<!-- Assuming "D" is your font's Delete icon --> | |
<span data-icon="D"> | |
Delete | |
</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment