如何更改导航栏的默认背景颜色?
这个问题在这里已经有了答案:
实际上,您尚未在HTML中的任何位置应用navbar-custom
类。 使用类navbar
将它添加到div
类上的类列表的末尾。
<div class="navbar navbar-inverse navbar-fixed-top navbar-custom">
更改
<div class="navbar navbar-inverse navbar-fixed-top">
至
<div class="navbar-custom navbar-fixed-top">
无需更改类。 只需要给你的选择器比当前的“主宰”更高的特异性:
.navbar.navbar-inverse {
background-color: #CC0000;
}
这将推翻标准背景。
编辑:如果因为任何原因你更喜欢使用navbar-custom,你将不得不将这个类添加到元素,并仍然让你的选择器具有更高的特异性。 例如:
.navbar.navbar-custom { }
链接地址: http://www.djcxy.com/p/89427.html
上一篇: How can I change the default background color of the nav bar?
下一篇: Bootstrap Navbar CSS