Created
November 21, 2011 19:40
-
-
Save jwlawrence/1383675 to your computer and use it in GitHub Desktop.
Font Icons
This file contains hidden or 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:before { | |
font-family: icons; | |
margin-right: 5px; | |
} | |
.icon-replace { | |
text-indent: -9999px; | |
overflow: hidden; | |
display: inline-block; | |
position: relative; | |
min-width: 1em; | |
} | |
.icon-replace:before { | |
position: absolute; | |
left: 0; /* Firefox needs to be explicit here */ | |
top: 0; | |
text-indent: 0; | |
} | |
.icon-check:before { content: "✔"; } | |
/* Plus your other icon types here */ |
This file contains hidden or 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 href="#" class="icon icon-replace icon-check">Check</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment