以下のリストでは、私が使用しようとした(最初の親)のように親リストのスタイルを設定したい:
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>