我有这个代码。
<div class="myDiv">
<div>
I want to be red.
</div>
</div>
<p>I'm some other content on the page</p>
<div class="myDiv">
<div>
I want to be blue.
</div>
</div>
.myDiv div:nth-child(odd) {
color: red;
}
.myDiv div:nth-child(even) {
color: blue;
}
我明白为什么它不起作用了。它使myDiv 中的每个奇怪的 div都变成红色。我想要它做的是让 myDiv 中每个奇怪的 div 示例变为红色。我该怎么写?
这是一个JSFiddle。