2025/06/28 6

css position 정리

body{ margin:0px; padding:0px; } /* 위치를 고정시킨다. static 은 요소가 html 문서에서 일반적인 흐름을 따라 배치 일반적인 block,inline 속성이다. top,right,bottom,left 와 같은 속성에 의한 상대적인 위치에 배치된다. */ main,section,article,div{ border:1px solid black; padding:20px; } /*static 은 top,right,bottom,left 는 상대적인 위치에서 변경이 가능하다. */ main{ max-width:600px; /*좌우는 동일하게 맞추겠다...

css 2025.06.28
반응형