问题描述
我在 Google 和 bootstrap 文档中搜索了所有内容,但无法弄清楚我们如何更改“-”颜色 我能找到的最多的是这个 How to change customized carousel indicator background color? 但它改变了指标的背景并形成了一个盒子类型的形状 我们如何更改“-”颜色?
解决方法
.carousel-indicators li
{
background-color: #000 !important;
/*more custom style*/
}
.carousel-indicators .active {
background-color: grey !important;
}