我正在使用MaterialiseCSS创建一个导航栏,我添加了一些代码来在悬停时更改项目的颜色。但是,当我向li添加一个类“active”时,我不知道如何更改导航栏项的背景颜色和文本颜色。
<nav class="navbar-fixed">
<div class="nav-wrapper">
<a href="lobby.php" class="brand-logo center">
<img id="logo" src="images/logo.png"/>
</a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul class="left hide-on-med-and-down">
<li><a href="#">Item1</a></li>
<li class="active"><a href="#">Item2</a></li>
<li><a href="#">Item3</a></li>
</ul>
</div>
</nav>
我的CSS:
nav.navbar-fixed {
background: white;
border: none;
box-shadow: none;
height: 70px;
}
.navbar-fixed .nav-wrapper {
background: white;
margin: 20px;
}
.navbar-fixed .nav-wrapper > ul > li > a {
color: #faa61a;
}
.navbar-fixed .nav-wrapper > ul > li > a:hover {
color: white;
}
.navbar-fixed .nav-wrapper > ul > li:hover {
background-color: #faa61a;
}
.navbar-fixed .nav-wrapper .brand-logo img {
height: 45px;
}
.navbar-fixed .nav-wrapper .button-collapse i {
color: black;
}
当我将鼠标悬停时,它工作正常,但当我将项目设置为活动状态时,它会使用其默认的背景颜色和颜色。
答案 0 :(得分:1)
Active是在materialize css中定义的类。
nav ul li.active {
background-color: rgba(0, 0, 0, 0.1);
}
您可以通过覆盖此类来更改颜色或指定任何其他规则。如果这没有帮助,你能把代码放在小提琴上并分享链接吗?