对于下面的列表,我只想像我尝试使用的(第一个父级)一样设置父级列表的样式:
ul < li {
background-color: yellow;
}
把这个不起作用,我该怎么做?
<ul>
<li>first parent <!-- style this -->
<ul>
<li>second</li>
<li>second</li>
<li>second</li>
<li>second</li>
<li>second</li>
</ul>
</li>
<li>first parent</li> <!-- style this -->
<li>first parent</li> <!-- style this -->
<li>first parent</li> <!-- style this -->
<li>first parent</li> <!-- style this -->
</ul>