Recent Posts
Recent Comments
HEROJOON 블로그(히로블)
[HTML] table 가운데 정렬하기 본문
반응형
1. table 가운데 정렬하기
<style>
table {
margin-left: auto;
margin-right: auto;
}
</style>
2. table 내용 가운데 정렬하기
<style>
table {
text-align: center;
}
</style>
반응형
'Frontend' 카테고리의 다른 글
NuxtJS 프로젝트 생성하기 (0) | 2021.08.15 |
---|---|
VueJS 프로젝트에 favicon 적용하기 (0) | 2020.11.30 |
React 프로젝트 생성하기 (0) | 2020.11.23 |
React를 Github Page에 Publish(게시)하기 (0) | 2020.11.22 |
Javascript var, let, const 차이 (0) | 2020.06.04 |
Comments