答案 0 :(得分:2)
在悬停时使用text-decoration: underline;
并删除颜色定义:
.navbar-nav > li > a:hover {
color: black;
text-decoration: underline;
}
我看到它被其他CSS覆盖,因此请使用!important
.navbar-nav > li > a:hover {
color: black!important;
text-decoration: underline!important;
}
编辑
我可以增加下划线的重量/厚度吗?
使用border-bottom
代替text-decoration
.navbar-nav > li > a:hover {
color: black!important;
text-decoration: none;
border-bottom: 10px solid black;
}