0

我在使用引导程序默认布局时遇到问题。我正在尝试更改当前为蓝色的活动导航项的背景颜色,但我的 css 无法正常工作。这是一个片段,如果我检查一个选定的导航项目,它将显示在 google chrome 控制台上,但它不会工作。

.dropdown-menu .active{
background:red; 
}

css 存在,但链接背景仍然是蓝色的。

我想我并没有说清楚,这里有一个关于导航默认外观的演示。http://demo.rootstheme.com/

4

1 回答 1

0

这应该做的工作:

.dropdown-menu li.active > a {
    background-color: red;
    background-image: -webkit-linear-gradient(top, white, red);
}

问题是 Bootstrap 的background-image属性覆盖了你的。

于 2012-10-05T18:47:21.773 回答