gpt4 book ai didi

具有固定父项的元素的 CSS z-index 不起作用

转载 作者:行者123 更新时间:2023-11-28 07:58:47 26 4
gpt4 key购买 nike

当具有相对定位的元素和具有固定定位的父元素由于某种原因不受 z-index 属性影响时出现问题。

如果我将父元素设置为 position:relative;

一切正常

.outer {
background-color: rgba(0, 0, 0, 0.5);
width: 100px;
height: 100px;
}
.inner {
position: relative;
z-index: 5;
}
#example1 .outer {
position: absolute;
top: 0;
}
#example2 .outer {
position: fixed;
top: 150px;
}
.backdrop {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.7);
}
<div id="example1">
<div class="outer">
<div class="inner">z-index works fine</div>
</div>
</div>
<div id="example2">
<div class="outer">
<div class="inner">z-index doesn't work</div>
</div>
</div>
<div class="backdrop">

</div>

还有一个 fiddle .

最佳答案

...或者在 #example2 .outer 上设置 z-index:1 将其放在 .backdrop 之上

关于具有固定父项的元素的 CSS z-index 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29942476/

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