这可能很简单,但我似乎无法完成我的需要。
基本上,当相关页面处于活动状态时,我希望颜色更改为其他颜色而不是bootstrap的默认蓝色。
我尝试过很多不同的CSS,但这是我目前的:
ul.nav a:active {
background-color: #3366CC !important;
}
我使用的导航栏如下:
<nav class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav nav-pills nav-justified fixed-top">
<li class="active"><a href="">Home</a></li>
等
我是否缺少一个简单的CSS规则,颜色会因我的其他菜单需求而自由变化,例如:
ul.nav {
padding: 5px;
}
ul.nav li a {
color: #fff;
}
ul.nav li a:hover{
color: #CC0033 !important;
}
ul.nav a:hover {
background-color: #fff !important;
}
任何帮助将不胜感激!
答案 0 :(得分:0)
您只需要使用活动类
将颜色添加到li内的标记ul.nav li.active a {
background-color: #3366CC !important;
}
答案 1 :(得分:0)
:active pseudo-class仅匹配用户正在点击链接的过程: https://developer.mozilla.org/en-US/docs/Web/CSS/:active 它不表示哪个页面处于活动状态。
在Bootstrap中,当前处于活动状态的页面/部分由 li 上的活动类发出信号。在Bootstrap 3中,尝试:
.nav > .active {
background-color: #3366CC;
}
使用Inspect Element查找实际应用的样式,以便正确覆盖它。