为什么具有绝对位置和 z-index 的元素不起作用?

Why element with position absolute and z-index not working?

我不明白,当“preloader-one”的索引高于“preloader-two”时,为什么元素“preloader-two”出现在“preloader-one”上方 可能是什么问题?

.preloader-one,
.preloader-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.preloader-one {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.preloader-two {
    background-color: #000;
    z-index: 999;
}

<body>
   <div class="preloader-one">
        <img>
   </div>
   <div class="preloader-two"></div>
</body>

在这个简单的模型中,.preloader-one 显示在 .preloader-two 上方,但您必须为其设置背景色才能使其可见。

.preloader-one,
.preloader-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.preloader-one {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background-color: #f00;
}

.preloader-two {
    background-color: #000;
    z-index: 999;
}
<div class="preloader-one">One</div>
<div class="preloader-two">Two</div>