我想知道当容器相对定位并且溢出设置为隐藏时,是否完全不可能释放嵌套的 div?
在这种情况下,给嵌套的 div 一个固定的位置并不是一种选择。
请看一下这个例子:http: //jsfiddle.net/s7nhw/11/。
任何人都知道如何做到这一点?
我会很感激任何反馈!
<div class="container">
<div class="nested-div"></div>
</div>
<style>
.container {
margin: 0 auto;
width: 100px;
height: 100px;
background: green;
overflow: hidden;
position: relative;
}
.nested-div {
width: 200px;
height: 100px;
background: red;
z-index: -1;
position: absolute;
}
</style>