gpt4 book ai didi

html - 我的子 div 的不透明度一直从其父级继承。我怎样才能阻止这种行为?

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

我就是想不通为什么 <div id="icon-menu">仍然具有与祖先相同的不透明度 <div class="box"> .据我所知,根据 CSS 特性,这不应该发生。

<div class="jumbotron">    
<div class="box">
<div id="icon-menu" style="opacity: 1">
<i class="fa fa-bars"></i>
Menu
</div>
</div>
</div>

这是我的 CSS:

.box {
background-color: #000000;
height: 60px;
min-width: 100%;
opacity: 0.5;
}

#icon-menu {
opacity: 1;
padding-left: 75px;
position: fixed;
color: #ffffff;
font-size: 40px;
}

如您所见,我尝试了一些方法来改变 <div id="icon-menu:> 的不透明度。回到 1,但没有任何效果。你知道哪里出了问题吗?

最佳答案

您不能覆盖子元素中的不透明度。来自 MDN:

The value applies to the element as a whole, including its contents, even though the value is not inherited by child elements. Thus, an element and its contained children all have the same opacity relative to the element's background, even if the element and its children have different opacities relative to one another.

https://developer.mozilla.org/en-US/docs/Web/CSS/opacity

关于html - 我的子 div 的不透明度一直从其父级继承。我怎样才能阻止这种行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26348125/

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