position1 [CSS] position position relative, absolute 123 div { position: relative; top: 10px; left: 10px; width: 100px; height: 100px; background-color: red; } div span { position: absolute; top: 10px; left: 10px; background-color: yellow; } absolute는 기준점이 body가 아니라 자기자신(span)이 속해있는 부모(div). span이 가지고 있는 위치는 그 부모인 div가 기준이 됨. fixed body { height: 1000px; } div { position: fixed; top: 0; width: 100%; height: 32px; backgr.. 2022. 3. 14. 이전 1 다음