gpt4 book ai didi

css - 制作 :first-child ignore nested structure?

转载 作者:太空宇宙 更新时间:2023-11-04 15:08:57 24 4
gpt4 key购买 nike

http://jsfiddle.net/RKwHk/我需要如何更改我的选择器以便它只选择第一段?谢谢

<div class="cont">
<span>
<p>first</p>
</span>
<span>
<p>second</p>
</span>
<span>
<p>thrid</p>
</span>
</div>

.cont p {
color: green;
}
.cont p:first-child {
color: red;
}

最佳答案

这样使用:

.cont p {
color: green;
}
.cont span:first-child p {
color: red;
}

关于css - 制作 :first-child ignore nested structure?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15570252/

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