gpt4 book ai didi

html - css - 只有最后一个子类型选择器(只有一个)

转载 作者:太空宇宙 更新时间:2023-11-04 03:23:45 25 4
gpt4 key购买 nike

我需要选择类型为 <div> 的最后一个子项包含在“#myDiv”中

    <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(只有一个)

最佳答案

要选择 #myDiv 的最后一个 div grandchild,您需要使用两组带有 :last- 的子组合器类型选择器:

#myDiv > div:last-of-type > div:last-of-type

关于html - css - 只有最后一个子类型选择器(只有一个),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27455382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com