gpt4 book ai didi

css nth-child,每3rd + 1,即: 4, 7、10、13等

转载 作者:技术小花猫 更新时间:2023-10-29 11:27:59 25 4
gpt4 key购买 nike

我一直在努力解决这个问题,但没有成功 - 现在可以将其作为占位符使用,但它很糟糕......

.customField:nth-child(4), 
.customField:nth-child(7),
.customField:nth-child(10),
.customField:nth-child(13),
.customField:nth-child(16) {
clear: both;
}

我如何在 nth-child 语句中得到它?

最佳答案

每第 3 个 child 都是 3n,但要从第 4 个 child 开始,请使用 4 作为偏移量。

div:nth-child(3n + 4) {
color: red;
}
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>
<div>asdf</div>

关于css nth-child,每3rd + 1,即: 4, 7、10、13等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41986426/

25 4 0
文章推荐: html - 在网站上显示印度货币符号
文章推荐: linux - 在 Linux 中更改进程 ID (PID)
文章推荐: c - 父进程如何通过调用_exit的子进程等待获取终止状态
文章推荐: html -