gpt4 book ai didi

html - 如果父级有 (15,45,75,105) 个元素,则仅隐藏最后一个元素(仅限 CSS)

转载 作者:行者123 更新时间:2023-11-28 04:46:58 25 4
gpt4 key购买 nike

我有一个无序列表 <ul>其中可以包含 15,30,45,60,75,90,...等等元素。如果列表有 15/45/75/105 等等,我只想隐藏最后一个元素。我想用只用 CSS,不用 JQuery 等。

我尽力完成了,找到了这篇文章 Can CSS detect the number of children an element has?到目前为止,但无法开始工作。

我怎样才能完成这项工作?

最佳答案

合并 :last-childnth-of-type :

ul > li:last-child:nth-of-type(15n):not(:nth-of-type(30n)) { display: none; }

关于html - 如果父级有 (15,45,75,105) 个元素,则仅隐藏最后一个元素(仅限 CSS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42454509/

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