코딩공부/CSS

position속성

잉옐잉 2021. 7. 24. 22:23

position

웹 문서안의 요소를 자유자재로 배치할수 있도록 해주는 속성.

 

position 속성값


position:static;

기본값.

문서의 흐름에따라 요소를 배치하는 속성값.

 top, right, bottom, left, z-index 속성이 아무런 영향을 주지못한다.

See the Pen by 김예리 (@mxmgfkbj-the-reactor) on CodePen.

 

position:relative;

요소의 위치를 지정할수 있다.

페이지 레이아웃에서 요소가 차지하는 공간은 static과 같다.

See the Pen relative by 김예리 (@mxmgfkbj-the-reactor) on CodePen.

 

position:absolute;