我有一个相对定位的父 Div 并设置为overflow:hidden
. 如何将 Div 覆盖在里面?
我将内部 div 的边距设置为负数,因为我希望它与父 div 重叠。
html
<div class="out">
<div class="in">
</div>
</div>
css
.out{
margin-left:100px;
width:130px;
height:130px;
margin-top:10px;
border:1px solid blue;
position:relative;
overflow:hidden;
}
.in{
width:80px;
height:80px;
z-index: 999;
clear: both;
position: absolute;
margin-left: -20px;
margin-top: -20px;
background-color:yellow;
}