본문 바로가기

IT노트(구)/HTML/CSS

table 가운데 정렬 하는 방법(html/css)

table의 내용이 아니라

table 자체를 가운데 정렬을 하고 싶다면 어떻게 해야할까?

다음과 같이 하면 100% 적용된다.(HTML5 표준이므로 안심하고 사용해도 된다!)



<table style="
margin-left: auto; margin-right: auto;">

...

</table>


(table 내용 가운데 정렬은 style="text-align: center;"를 사용하면 된다!)