Frontend
[HTML] table 가운데 정렬하기
herojoon
2020. 11. 29. 22:07
반응형
1. table 가운데 정렬하기
<style>
table {
margin-left: auto;
margin-right: auto;
}
</style>
2. table 내용 가운데 정렬하기
<style>
table {
text-align: center;
}
</style>
반응형