Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试更改active引导框架中类中文本的颜色。
active
.active{ color:#720B87; }
但它采用默认值。
假设您正在谈论导航栏.active链接,并且正在使用最新的 Bootstrap 3,那将是..
.active
.navbar-nav>.active>a, .navbar-nav>.active>a:hover, .navbar-nav>.active>a:focus { color:#720B87; }
对于 2.x(如果你不使用.navbar-inverse)..
.navbar-inverse
.navbar .nav>li>a { color:#720B87; }