gpt4 book ai didi

html - CSS nth-of-type 问题

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

我正在尝试使用 nth-of-type 定位我的 2/3、6/7、10 等元素,但我似乎无法让它正常工作。是否可以使用 nth-of-type 来定位这些元素,或者我会使用 JS 来最好地实现它?

ul {overflow:hidden; width:300px;}
ul li {width:150px; float:left; background:#ff0000;}
ul li:nth-of-type(3n+1){
background:#fff;
}

https://codepen.io/liamgallagher/pen/wjGGGP

最佳答案

你可以创建 2 个循环

    ul {overflow:hidden; width:300px;}
ul li {width:150px; float:left; background:#ff0000;}
ul li:nth-of-type(4n+1){
background:#fff;
}
ul li:nth-of-type(4n){
background:#fff;
}
<ul>
<li>WHITE</li>
<li>RED</li>
<li>RED</li>
<li>WHITE</li>
<li>WHITE</li>
<li>RED</li>
<li>RED</li>
<li>WHITE</li>
<li>WHITE</li>
<li>RED</li>
</ul>

关于html - CSS nth-of-type 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49997277/

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