gpt4 book ai didi

css - 样式嵌套 div 没有指定类名

转载 作者:太空宇宙 更新时间:2023-11-03 20:06:02 26 4
gpt4 key购买 nike

我想更改嵌套 div 的样式,如下例所示:

<div class="box">  #1
<div> #2
<div> #3
<div> #4
<div></div> #5
<div></div> #6
<div></div> #7 **How to style this div when class name is not present?**
</div>
</div>
</div>
</div>

我能够以这种方式访问​​ div #4:

.box div div div {}

但是访问div #5 #6 #7的方法是什么?

最佳答案

要访问 #7,您有两个或三个选项全部,它们使用直接后代选择器 > 将上下文限制为 #4 div 的子级。

.box div div div > div:last-of-type{}
/* assumes there are no additional divs after #7 */

.box div div div> div:last-child {} 
/* assumes that the div is, in fact, the last child

甚至

.box div div div> div:nth-child(3) {}
/* assumes that the 3rd child is a div */

关于css - 样式嵌套 div 没有指定类名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49655387/

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