答案 0 :(得分:0)
我不确定你的代码是什么样的,但是你可以做这样的事情
.navbar #nav > .active > a {
color: red;
}
或定位您想要的类或ID
答案 1 :(得分:0)
在活动类中添加CSS伪元素::before
。
您可以调整颜色和位置。示例代码如下。
a.nav-link.active::before {
content: "";
height: 2px;
width: 10px;
background: #000;
left: 25px;
position: absolute;
top: 45px;
}