Skip to content

Instantly share code, notes, and snippets.

@jwlawrence
Created November 21, 2011 19:40
Show Gist options
  • Save jwlawrence/1383675 to your computer and use it in GitHub Desktop.
Save jwlawrence/1383675 to your computer and use it in GitHub Desktop.
Font Icons
.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 */
<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