首页 > 解决方案 > 无法删除 HTML 链接下划线

问题描述

我正在努力摆脱当您将鼠标悬停a在 HTML 中的元素上时出现的下划线链接。我向链接添加了一个style="text-decoration: none"属性,a但是当我将鼠标放在文本上时,会出现下划线。

我也尝试使用这个 CSS:

.nounderline {
  text-decoration: none;
}

.nounderline a:hover {
  text-decoration: none;
}

然后在链接上设置nounderline类。a

标签: htmlcss

解决方案


如果在 CSS 中添加!importantafter none,则下划线应该消失。好吧,如果您只使用 html 和 css,它就会消失,并且您的 css 链接正确。


推荐阅读