gpt4 book ai didi

jquery - z-index:20 出现在 z-index:10 下面,即使它的 z 索引更大

转载 作者:行者123 更新时间:2023-11-28 15:59:39 29 4
gpt4 key购买 nike

我正在尝试制作一个灯泡。这是代码 JSfiddle

HTML

<input class="button" type="button">
<div id="black" style="display: none; position: fixed; width: 100%; height: 100%; left: 0; top: 0; background: rgba(51,51,51,0.7); z-index: 10;"></div>

<div id="add" style="z-index: 20; display:none; border: 2px solid;">
<input type="text" >
</div>

查询

$('.button').click(function() {
$('#add').show();
$('#black').show();
})

在我看来,当我点击 .button 时,#add 必须出现在 #black 之上,因为它的 z-index( 20) 大于 #black (10)。但它出现在 #black 下。感谢您的帮助。

最佳答案

这是因为z-index属性only applies to positioned elements .

position 属性的默认值为static。如果您将 position: relative 添加到该元素,它将按预期工作。

Updated Example

关于jquery - z-index:20 出现在 z-index:10 下面,即使它的 z 索引更大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28706608/

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