gpt4 book ai didi

html - 使用 nth-child() 进行高级元素选择

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

nth-child 选择有点问题。我需要获取下一系列数字以应用样式:

3,4,7,8,11,12,15,16,....

the idea is set the white background of the elements

我的解决方案是使用两个 css 规则:

.info div:nth-of-type(4n+4),
.info div:nth-of-type(4n-1)

但我想知道是否可以只使用一个选择器。

最佳答案

是的,你可以使用

div:not(:nth-child(4n+1)):not(:nth-child(4n+2))

但我认为原始版本更具可读性。

关于html - 使用 nth-child() 进行高级元素选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21353536/

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