gpt4 book ai didi

html - CSS :not selector to target everything but a condition

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

http://jsfiddle.net/m7qLdstp/1/

<style>
:not(div p), p{
color: red
}
</style>

<p>This is a paragraph that should be red.</p>
<div><p>This is a paragraph that should not be red.</p></div>

是否可以使用 css :not选择器(在这种情况下)将所有 <p>红色,除了任何<p>取而代之的是 <div>

我在 jsfiddle 上运行了几个不同的变体,但无法让它工作?!

最佳答案

下面会改变所有<p>的颜色不是 <div> 的直接后代的元素:

:not(div) > p{
color: red;
}

Demo fiddle

关于html - CSS :not selector to target everything but a condition,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26372079/

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