방문해 주셔서 감사합니다! 항상 행복하세요! - 문의사항은 메일 또는 댓글로 언제든 연락주세요. - "해줘","답 내놔" 같은 질문은 답변드리지 않습니다. - 메일주소 : lts06069@naver.com Middle1 Html CSS 중앙 정렬 1. 가로정렬 : 내용을 같은 종결 블록 요소의 왼쪽, 중앙, 오른쪽, 양쪽에 정렬한다. .align-left { text-align: left; } .align-center { text-align: center; } .align-right { text-align: right; } .align-justify { text-align: justify; } 2. 고정폭의 블럭 요소 중앙 정렬 body { text-align: center; } p { text-align: left; width: 200px; margin: 0 auto; /*넓이는 원하는 만큼*/ } 3. 가변폭의 컨테츠를 중앙 정렬 .target { display: table; margin-left: auto; margin-right: auto.. 2019. 7. 2. 이전 1 다음