Skip to content

Instantly share code, notes, and snippets.

@glennreyes
Last active October 19, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glennreyes/f0e5913ca43c3a34e49e to your computer and use it in GitHub Desktop.
Save glennreyes/f0e5913ca43c3a34e49e to your computer and use it in GitHub Desktop.
The solution for the IE pseudo text decoration
.email {
text-decoration: none;
}
.email:hover {
text-decoration: underline;
}
.email:before {
content:">>";
text-decoration: underline;
display: inline-block;
}
.email:before,
.email:hover:before {
text-decoration: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment