자식 요소 위치이 영향을받을 수 있습니다.
부모 요소 위치를 relative로 설정 한 후 자식 요소 위치를 절대 값으로 설정하려고하면 문서가 아닌 부모에만 절대적으로 배치됩니다.
먼저 예를
<style>
#container
{
background:red none repeat scroll 0 0;
display:block;
position:relative;
top: 100px;
left: 100px;
width:100%;
}
#child
{
position: absolute;
top: 0px;
left: 0px;
}
</style>
<div id="container">
<div id="child">
I am absolutely placed relative to the container and not to the document
</div>
</div>
두 번째 예
<style>
#container
{
background:red none repeat scroll 0 0;
display:block;
top: 100px;
left: 100px;
width:100%;
}
#child
{
position: absolute;
top: 0px;
left: 0px;
}
</style>
<div id="container">
<div id="child">
I am absolutely placed relative to the container and not to the document
</div>
</div>
봅니다 위의 두 사례를 확인하고 그 차이를 볼 수 있습니다.
예를 들어, '절대적으로'위치 된 자식들은 윈도우 대신에이 부모를 기준으로합니다. –