예제 소스 Exercise/8장/2_position/1_static.css
#position_static_parent { width: 500px; height: 500px; background-color: yellow; } #position_static_child { position: static; width: 200px; height: 200px; background-color: blue; /* static 속성값과 margin-top 속성을 함께 사용하면 마진 병합 현상이 일어납니다. */ margin-top: 100px; }
그림 8-6 static 속성값과 margin-top 속성을 함께 사용하면 부모 자식 간에 마진 병합 현상이 일어난다