답변:
절대 위치 요소는 실제로 relative
부모 또는 가장 가까운 발견 된 상대 부모에 대해 배치됩니다. 따라서 요소는 요소 overflow: hidden
사이 relative
에 absolute
위치 해야합니다 .
<div class="relative-parent">
<div class="hiding-parent">
<div class="child"></div>
</div>
</div>
.relative-parent {
position:relative;
}
.hiding-parent {
overflow:hidden;
}
.child {
position:absolute;
}
당신 div
은 이것을 다음과 같이 만듭니다 :
<div style="width:100px; height: 100px; border:1px solid; overflow:hidden; ">
<br/>
<div style="position:inherit; width: 200px; height:200px; background:yellow;">
<br/>
<div style="position:absolute; width: 500px; height:50px; background:Pink; z-index: 99;">
<br/>
</div>
</div>
</div>
이 코드가 도움이되기를 바랍니다. :)