margin과 padding 속성 외에 좌표를 지정하는 속성에는 top, right, bottom, left 속성이 있습니다. margin-top 속성 대신 top 속성을 적용하면 어떠한 변화도 일어나지 않습니다.
#position_static_child { position: static; width: 200px; height: 200px; background-color: blue; /* margin-top: 100px; */ /* static 속성값과 top 속성은 함께 사용할 수 없습니다. */ top: 100px; }
그림 8-7 margin-top 속성 대신 top 속성을 적용: 변화 없음