Position

Layout > Position

  • Utilities for controlling how an element is positioned in the DOM.
Class Properties Meaning
static position: static; 기준 없음 (배치 불가능 / 기본값)
fixed position: fixed; 요소 자기 자신을 기준으로 배치
absolute position: absolute; 부모(조상) 요소를 기준으로 배치
relative position: relative; 뷰포트 기준으로 배치
sticky position: sticky; 스크롤 영역 기준으로 배치

참고

links

social