为什么父母的父级的较高z-index被另一个父级覆盖?
topInner
内的top
内的bottom
被<style>
.top {
width:300px;
height:20px;
background-color:blue;
z-index:30;
}
.topInner {
width: 300px;
height: 20px;
background-color: green;
z-index: 30;
text-align:center;
}
.bottom {
width: 300px;
height: 60px;
background-color: red;
z-index: 20;
}
z-index覆盖。是不是继承了z-index?
我会在这里提供一个代码片段。
<div class="main">
<div class="top">TOP
<div class="topInner">Inner</div>
</div>
<div class="bottom">Bottom</div>
{{1}}