gpt4 book ai didi

html - 仅使用 css 选择第二个元素

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

尝试仅使用 CSS 来选择第二个“左列”,更改 HTML 不是一个选项。 :nth-of-type(2) 正在选择两个 div 的

<div class="collection">

<div class="column-left">

</div>

<div class="column-left">

</div>
</div>

最佳答案

使用nth-child()选择器得到想要的结果

将您的 CSS 更改为:

.column-left:nth-child(2) {
color: red;
}

此链接将解释第 nth-child 选择器和 nth-of-type 之间的区别:

Link

关于html - 仅使用 css 选择第二个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36678986/

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