이 게시물이 조금 오래되었다는 것을 알고 있지만 동일한 문제가 발생하여 몇 시간 동안 수정하려고했습니다. 마침내 해결책을 찾았습니다.
2 개의 상자가 절대 위치에 있다면
<div style='left: 100px; top: 100px; position: absolute; width: 200px; height: 200px;'></div>
<div style='left: 100px; top: 100px; position: absolute; width: 200px; height: 200px;'></div>
화면에 하나의 상자가있을 것으로 예상합니다. 이를 위해서는 margin-bottom을 -height와 동일하게 설정해야합니다.
<div style='left: 100px; top: 100px; position: absolute; width: 200px; height: 200px; margin-bottom: -200px;'></div>
<div style='left: 100px; top: 100px; position: absolute; width: 200px; height: 200px; margin-bottom: -200px;'></div>
나를 위해 잘 작동합니다.