我正在尝试在作为无序列表的第一个子项的列表项上呈现背景颜色。
HTML结构如下
<div class="nav-collapse">
<ul class="nav">
<li><a href="#">test 1</a></li>
<li><a href="#">test 2</a></li>
<li><a href="#">test 3</a></li>
</ul>
</div>
并在我做的第一个子元素上应用背景颜色
.nav-collapse > .nav:first-child {
background-color: orange;
}
它为所有列表项呈现橙色背景。我玩过一些细微的变化,但没有什么区别。
.nav-collapse > ul.nav:first-child
.nav-collapse > ul:first-child