我有一套使用 :before
应用箭头样式的链接。
它在所有浏览器中看起来都很好,但是当我将下划线应用到链接时,我不希望在 :before
部分(箭头)有下划线。
参见 jsfiddle 的例子: http://jsfiddle.net/r42e5/1/
可以移除这个吗?我使用 #test p a:hover:before
的测试样式确实得到了应用(根据 Firebug) ,但是下划线仍然存在。
有办法避免这种情况吗?
#test {
color: #B2B2B2;
}
#test p a {
color: #B2B2B2;
text-decoration: none;
}
#test p a:hover {
text-decoration: underline;
}
#test p a:before {
color: #B2B2B2;
content: "► ";
text-decoration: none;
}
#test p a:hover:before {
text-decoration: none;
}
<div id="test">
<p><a href="#">A link</a></p>
<p><a href="#">Another link</a></p>
</div>