gpt4 book ai didi

css - 从链接中删除蓝色下划线

转载 作者:数据小太阳 更新时间:2023-10-29 09:04:23 25 4
gpt4 key购买 nike

我试图让一个链接显示为白色,没有下划线。文本颜色正确显示为白色,但蓝色下划线顽固地存在。我在 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; 应用于 anchor (.boxhead a),而是应用于跨度元素 (.boxhead ).

试试这个:

.boxhead a {
color: #FFFFFF;
text-decoration: none;
}

关于css - 从链接中删除蓝色下划线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2789703/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com