gpt4 book ai didi

html - 未应用 css 的第 nth-child(number) 选择器

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

我想在 600*600 格内放置 3 个 200*200 的矩形格。与 25 像素的分离。我的第一个代码工作正常。但是当我尝试应用 nth-child(1) 和 nth-child(2) 时,它不起作用。

https://jsfiddle.net/user1989/L20fn90L/

如果我将样式部分更改为

#two-parent :nth-child(0){
margin-top:25px;
width:200px;
height:200px;
background-color : black;

float:left;

}
#two-parent :nth-child(1){
margin-top:25px;
position:relative;
width:200px;
height:200px;
background-color : orange;
margin-left:25px;
float:left;
}

未应用子选择器。

最佳答案

您正在使用 div 作为子容器,那么这些 CSS 声明应该可以完成工作:

#two-parent div:nth-child(1) { /** :nth-child(1) for 1st child  **/
/** Declaration **/
}
#two-parent div:nth-child(2) { /** :nth-child(2) for 2nd child **/
/** Declaration **/
}

关于html - 未应用 css 的第 nth-child(number) 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42314265/

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