【发布时间】:2011-02-16 21:31:33
【问题描述】:
我试图让链接显示为白色,不带下划线。文本颜色正确显示为白色,但蓝色下划线顽固地持续存在。我在 CSS 中尝试了 text-decoration: none; 和 text-decoration: none !important; 来删除链接下划线。都没有奏效。
.boxhead .otherPage {
color: #FFFFFF;
text-decoration: none;
}
<div class="boxhead">
<h2>
<span class="thisPage">Current Page</span>
<a href="myLink"><span class="otherPage">Different Page</span></a>
</h2>
</div>
如何去除链接中的蓝色下划线?
【问题讨论】:
-
好吧,当你做 text-decoration:none 时它应该会消失。您确定将其应用于正确的元素吗?能否提供示例代码?
-
text-decoration: none 在哪里使用?