像这样的事情应该管用;但是如果看不到您的标记,就很难确定。
a, a:hover, a:focus, a:active {
text-decoration: none;
}
虽然我通常会尽量远离
!important
, 有时它会派上用场。我会让你来判断你的项目是否这样做:
a, a:hover, a:focus, a:active {
text-decoration: none !important;
}
Specificity in CSS 不过,你可能想了解更多。熟悉Chrome的开发工具(特别是Inspector)以及如何使用它从前端对CSS进行故障排除也是一个好主意。