I have the following problem with the Internet Explorer 8+. It works in all other Browsers.
I dont want a underline hover effect on the i-tag inside the a-tag. The IE 8+ Ignores the hover pseudoclass on the i-tag. Here ist the HTML-Code:
<a href="#"><i class="icon-print"></i>Print</a>
This is the associated CSS-Code:
a:hover {text-decoration: underline;}
a i:hover {text-decoration: none;}
Wrap "print" in a
span
and in css
JsFiddle