如何在 a的元素中包含的元素nth-of-type
上使用 css 选择器?<span>
<li>
<ul>
我会期待span:nth-of-type(odd)
并span:nth-of-type(even)
工作,但他们没有。
span:nth-of-type(even) {
background-color: grey;
}
span:nth-of-type(odd) {
background-color: blue;
}
<ul>
<li>
<span>Test 1</span>
</li>
<li>
<span> 2 Test</span>
</li>
</ul>
<br>
Should look like this:
<br>
<span>Test 1</span>
<br>
<span> 2 Test</span>