gpt4 book ai didi

html - 有没有选择器排除显示: none elements?

转载 作者:技术小花猫 更新时间:2023-10-29 11:46:10 25 4
gpt4 key购买 nike

我只想选择<buttons>谁的 parent 有display: block并排除那些 <buttons>谁的 parent 有display:none .

有什么办法可以做到这一点吗?

最佳答案

实际上有一个 CSS3 解决方案来选择没有 display:none 样式的元素,或者给定一个明确的 style 属性:

*:not([style*="display: none"]) button{ ... }

演示:

*:not([style*="display: none"]) button{
color:yellow;
}
<p style="display:block">
My name is A.
<button>
a
</button>
</p>
<p style="display: none">
<button>
b
</button>
</p>

关于html - 有没有选择器排除显示: none elements?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46786663/

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