所以如果我正确理解z-index,它在这种情况下是完美的:

我想把底部图像(标签/卡片)下面的div上面。所以你看不到锋利的边缘。我怎么做呢?

z-index:-1 // on the image tag/card

or

z-index:100 // on the div above

也不管用。像这样的组合也不行。如何来吗?


z-index属性只适用于具有非静态位置值的元素(例如,position: absolute;, position: relative;,或position: fixed)。

还有位置:粘;它在Firefox中得到支持,在Safari中有前缀,在较旧版本的Chrome中使用了自定义标记,微软正在考虑将其添加到Edge浏览器中。


你的元素需要有一个position属性。(例如绝对指数、相对指数、固定指数)或z指数都不起作用。


在很多情况下,一个元素必须被定位到z-index才能工作。

实际上,应用position:相对于问题中的元素可能会解决问题(但没有提供足够的代码来确定)。

实际上,position: fixed, position: absolute和position: sticky也会启用z-index,但这些值也会改变布局。与位置:相对布局不会被打乱。

本质上,只要元素不是position: static(默认设置),它就被认为是定位的,z-index就可以工作。


许多关于“为什么z-index不起作用?”的问题的答案都断言,z-index只对已定位的元素起作用。从CSS3开始,这种情况就不再存在了。

弹性项目或网格项目的元素即使在位置是静态的情况下也可以使用z-index。

从规格来看:

4.3. Flex Item Z-Ordering Flex items paint exactly the same as inline blocks, except that order-modified document order is used in place of raw document order, and z-index values other than auto create a stacking context even if position is static. 5.4. Z-axis Ordering: the z-index property The painting order of grid items is exactly the same as inline blocks, except that order-modified document order is used in place of raw document order, and z-index values other than auto create a stacking context even if position is static.

以下是z-index在非定位伸缩项目上的演示:https://jsfiddle.net/m0wddwxs/


如果你将position设置为其他值而不是static,但元素的z-index仍然不起作用,这可能是某些父元素设置了z-index。

堆叠上下文具有层次结构,每个堆叠上下文都按照父堆栈上下文的堆叠顺序考虑。

下面是html

Div{边界:2px固体#000;宽度:100 px;高度:30 px;保证金:10 px;位置:相对;background - color: # FFF;} #el3 {background-color: #F0F;宽度:100 px;高度:60 px;前:-50像素;} <div id="el1" style="z-index: 5"></div> . <div id="el2" style="z-index: 3"> <div id="el3" style="z-index: 8"></div> . < / div >

不管el3的z指数有多大,它总是在el1下面,因为它的父结点有更低的堆叠上下文。你可以把堆叠顺序想象成el3的堆叠顺序实际上是3.8,低于5。

如果你想检查父元素的堆叠上下文,你可以使用这个:

var el = document.getElementById("#yourElement"); // or use $0 in chrome;
do {
    var styles = window.getComputedStyle(el);
    console.log(styles.zIndex, el);
} while(el.parentElement && (el = el.parentElement));

有一篇关于在MDN上叠加上下文的很棒的文章


确保您想要使用z-index控制的元素没有具有z-index属性的父元素,因为元素由于其父元素的z-index级别而处于较低的堆叠上下环境中。

这里有一个例子:

<section class="content">            
    <div class="modal"></div>
</section>

<div class="side-tab"></div>

// CSS //
.content {
    position: relative;
    z-index: 1;
}

.modal {
    position: fixed;
    z-index: 100;
}

.side-tab {
    position: fixed;
    z-index: 5;
}

在上面的例子中,模态的z指数比内容高,尽管内容会出现在模态的顶部,因为“content”是具有z-index属性的父元素。

这里有一篇文章解释了z-index可能不起作用的4个原因: https://coder-coder.com/z-index-isnt-working/


在我的例子中,我有我的导航栏的不透明度为0.9,我从codercoder.com得到了我的答案,因为我从我的导航栏的css中删除了不透明度属性,z-index工作


z指数需要这些来工作:

位置:相对,绝对,固定,.. 确保父元素没有溢出:hidden;


我在z指数上也遇到过同样的问题 不管你信不信,只要设置背景色就能解决问题

像这样

背景颜色:白色;


如果所有这些都失败了,请在HTML中查找语法错误。这不是直观的,但我看到它是z指数不起作用的原因。

下面的代码有无效的HTML语法:

<div class="over"/>
<div class="under"/>

...(这是无效的语法,因为div不是一个自关闭标签)。

应用于这些流氓HTML元素的CSS属性,如background-color: black、position: fixed、width: 150px和top:150px,都能正常工作。然而,z-index: 2属性在完全相同的条件下并不适用。

只有当无效的HTML被修复时,z-index才能正常工作。

我不确定为什么z-index比其他CSS属性更挑剔,但也许这个答案可以帮助到一些人。


只要给出其他静态的位置。你应该给两个容器一个位置,这样就可以了。