我有这个样式:

#bbpress-forums li.bbp-forum-freshness a:hover, #bbpress-forums li.bbp-topic-freshness a:hover {
    text-decoration: underline;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}


但是,当我将鼠标悬停在链接上时:

css - 将超链接设置为悬停时的下划线(无阴影效果)-LMLPHP

如您所见,它们仍在显示阴影效果。我已经能够在其他课程中使用上述方法。

这页纸:

https://www.publictalksoftware.co.uk/support-forums/

任何建议表示赞赏。我只希望它成为没有阴影的下划线。

最佳答案

尝试这个:

.bbp-forum-title:hover, .bbp-forum-freshness a:hover {
background: transparent!important;
border-top: none!important;
}

关于css - 将超链接设置为悬停时的下划线(无阴影效果),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58527490/

10-12 06:34