gpt4 book ai didi

html - CSS3 :not is not excluding an id

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

嘿,亲爱的 Stackoverflow 社区,

这里是我的CSS:

.text:not(#overview > *) {
margin-top: 10px;
margin-bottom: 10px;
}

我希望所有带有“text”类的东西的顶部和底部都有 10px 的边距,但不是标有 id“overview”的那个和它下面的所有东西。但是 css 没有按预期工作。

感谢您的帮助亚辛

最佳答案

没有按预期工作?所以它不会排除 id 本身吧?为此,您还需要添加 id:

.text:not(#overview) {
margin-top: 10px;
margin-bottom: 10px;
}

您现在所做的只是针对 id 中的所有内容,而不是 id 本身。这将确保 id 也被定位。

您也可以使用以下方式重置它:

.text {
margin-top: 10px;
margin-bottom: 10px;
}
#overview.text {
margin-top: 0;
margin-bottom: 0;
}

id 比 class 更具体。

关于html - CSS3 :not is not excluding an id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34932760/

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