position absolute
![[2021/12/22]국비지원 CSS3 4-(1) position](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FdG8OiX%2FbtrscPcsdcb%2FAAAAAAAAAAAAAAAAAAAAAFxr5y-NswZas35BfFOuN9jJ3tV2jkLYhjOE9ZmHO1Ev%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1756652399%26allow_ip%3D%26allow_referer%3D%26signature%3DF2R58nd5CYwd5a9A2v5k1F187dY%253D)
[2021/12/22]국비지원 CSS3 4-(1) position
position : z 축 상으로 위치 잡기 ( 레이어 개념 ) / 일반적으로는 주변에 영향을 크게 주지 않음 ( fixed 제외 ) position : relative = 밑에 깔리는 property, 상대 위치 상위 element나 기준이 될 element에 쓰임 position 비 지정된 일반 element을 밑에 깔고 그 위에 표시 가능 position : fixed = 지정 위치에 고정시켜버리기 ( 화면 스크롤 중에도 그 위치에 고정된 상태로 출력됨 ) position : absolute = 위에 덮는 property, 절대 위치 하위 element나 위에 올려서 같은 라인에 표현하고 싶은 element에 쓰임 offset : left, top, right, bottom z-index : 같은 ..