#position_fixed_child 안에 margin-top 속성을 사용하면 부모 자식 간에 발생하는 마진 병합 현상은 일어나지 않고 파란색 박스만 움직입니다.
#position_fixed_child {
position: fixed;
width: 200px;
height: 200px;
background-color: blue;
/* 마진 병합 현상이 일어나지 않습니다. */
margin-top: 100px;
}

그림 8-11 margin-top 속성을 사용하면 마진 병합 현상이 일어나지 않는다