我似乎无法找到一种方法来z-index
为具有低于z-index
覆盖元素的父元素的元素分配更高的优先级。
考虑这个例子:
<div style="width: 100px; height: 100px; background: #F00; position: absolute; left: 0; top: 0; z-index: 1;">
<div style="width: 50px; height: 100px; background: #00F; position: absolute; left: 50px; top: 0; z-index: 3;"></div>
</div>
<div style="width: 100px; height: 50px; background: #0F0; position: absolute; left: 0; top: 50px; z-index: 2;"></div>
结果:
预期结果: