我需要选择包含在"#myDiv"
中的<div>
类型的最后一个孩子
<div id="myDiv">
<div>
<img>
<div>
<div>text</div>
<div>text</div>
</div>
<div>divFooter</div>
</div>
<hr>
<div>
<img>
<div>
<div>text</div>
<div>text</div>
</div>
<div>divFooter</div>
</div>
<hr>
<div>
<img>
<div>
<div>text</div>
<div>text</div>
</div>
<div>divFooter</div> <!-- I WANT ONLY THIS -->
</div>
<hr>
</div>
我尝试了:nth-last-child
,:last-child
,:last-of-type
,:nth-last-of-type()
的多种组合,但不幸的是我无法只选择最后一个div (只有一个)
答案 0 :(得分:2)
要选择div
的最后#myDiv
孙子,您需要使用两组带有:last-of-type
选择器的子组合器:
#myDiv > div:last-of-type > div:last-of-type