gpt4 book ai didi

HTML - 为什么 z-index 不起作用?

转载 作者:行者123 更新时间:2023-11-28 17:29:33 26 4
gpt4 key购买 nike

我已经尝试了几个小时,这让我很紧张。我正在使用 bootstrap 和 spin.js 库。我试图在 img 标签上放置一个颜色层,但这根本行不通。

我正在处理的代码是 this

CSS代码

        .container-fluid {
position: relative;
padding: 0;
margin: 0;
}
.header{
position: relative;
max-height: 920px;
height: 100%;
}
.header_layer{
position: relative;
top: 0px;
left: 0px;
width: 100%;
height: 100px;
background-color: darkgrey;
z-index: 100;
}
.img_header{
position: relative;
top: 0px;
left: 0px;
width: 100%;
z-index: 99;
}

HTML代码:

<div class="container-fluid">
<div class="header col-md-12">
<div class="header_layer"></div>
<img src="http://placehold.it/350x150" class="img-responsive img_header">
</div>
</div>

但是,非常感谢。

最佳答案

当你给 position:relativetop/left : 0 所以元素不重叠我猜你需要 position:absolute

关于HTML - 为什么 z-index 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37378633/

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