결과는 그림 8-7과 같습니다. 이를 통해 static 속성값은 top, right, bottom, left 속성과 함께 사용할 수 없다는 것을 알 수 있습니다.
마지막으로 부모의 높이를 주석으로 처리하고 결과를 살펴봅시다.
#position_static_parent {
width: 500px;
/* static 속성값은 부모의 높이에 영향을 줄 수 있습니다. */
/* height: 500px; */
background-color: yellow;
}
#position_static_child {
position: static;
width: 200px;
height: 200px;
background-color: blue;
/* margin-top: 100px; */
/* top: 100px; */
}

그림 8-8 static 속성값은 부모의 높이에 영향을 준다