코딩/HTML, CSS
position: relatvie; position: absolute;
코딩쪼렙
2021. 10. 5. 20:22
728x90
posititon: relative;
최초위치는 static과 동일하다
현재 위치를 기준으로 top,left,right,bottom 적용된다
예)top: 100px;은 현재위치에서 아래로 100px옮긴다.
position: absolute;
가장가까운 relative 기준으로 또는
relatvie 없으면 body 기준
+css 작성 할 때
어떤요소를 fixed하거나 aboslute하는 것은 box, block의 개념이 아니라 다른 layer개념이 된다.