我有以下代码,我想选择一个特定的class=title
使用nth-child
,但它似乎确实有效
<div class="block">
<div class="title"></div> <!-- first title here !-->
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="title"></div> <!-- second title here !-->
<div class="item"></div>
<div class="title"></div> <!-- third title here !-->
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
测试 1
.title:nth-child(3){
background-color: red;
}
预期结果Third title highlighted
,但实际输出是no highlight is done
测试 2
.title:nth-child(1){
background-color: red;
}
预期结果First title highlighted
实际输出为first title is highlighted
不知道为什么它不适用于另一个孩子,而它只适用于第一个孩子..