CSS 解决 a标签去掉下划线 text-decoration: none无效 的解决方案

CSS 解决 a标签去掉下划线 text-decoration: none无效 的解决方案,第1张

CSS 解决 a标签去掉下划线 text-decoration: none无效 的解决方案

经过查阅,如果想要去掉a标签的默认效果,就要用text-decoration: none;,但是经过试验发现并不好用,可能是因为你用a标签里的class或id定义的CSS样式,就像这样:

<div class="test>
<a class="navbarLink">链接</a>
</div>
.navbarLink{
text-decoration: none;
}

如果这样定义a的下划线是不会消失的。


如果想要去掉默认样式,必须要这样定义CSS:

.test a{
text-decoration: none;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/587152.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-12
下一篇 2022-04-12

发表评论

登录后才能评论

评论列表(0条)

保存