gpt4 book ai didi

html - 使用 CSS 获取父级下的类的最后一个实例

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

有没有办法在相同的元素中选择特定类型类的nth-childlast-child

如果我使用 .small:last-childul .small:last-child 该属性只会影响第二个列表的最后一个元素。有没有我可以用来选择每个列表中 small 的最后一个实例的选择器?

<ul>
<li class="small">List Item</li>
<li class="small">List Item</li>
<li class="medium">List Item</li>
<li class="large">List Item</li>
</ul>
<ul>
<li class="medium">List Item</li>
<li class="large">List Item</li>
<li class="small">List Item</li>
<li class="small">List Item</li>
</ul>

请参阅 fiddle CSS Line 72 以供引用

http://jsfiddle.net/j7wq12v2/

最佳答案

:last-child 仅当相关元素是容器的最后一个子元素而不是特定类型元素的最后一个时才有效。我们可以使用 last-of-type

不幸的是,last-of-type 无法找到最后一个 .class

我们需要使用javascript来实现这个结果。

关于html - 使用 CSS 获取父级下的类的最后一个实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31658645/

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