我试图让链接显示为白色,没有下划线。文本颜色正确显示为白色,但蓝色下划线顽固地坚持下去。我尝试在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>
如何从链接中删除蓝色下划线?