반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Button
- IntelliJ
- js
- Visual Studio Code
- Java
- 문자열
- input
- 이클립스
- 자바스크립트
- list
- Eclipse
- javascript
- 배열
- 자바
- windows
- vscode
- CMD
- json
- 이탈리아
- 테이블
- string
- 인텔리제이
- table
- html
- Maven
- Files
- Array
- ArrayList
- date
- CSS
Archives
- Today
- Total
어제 오늘 내일
[HTML/CSS] 테이블 캡션 위치 지정(caption-side), 정렬(text-align) 본문
테이블의 제목을 붙이기 위해 <caption> 태그를 사용할 수 있습니다.
여기서는 이 캡션의 위치를 지정하는 방법을 알아보도록 하겠습니다.
캡션의 위치 지정 (caption-side)
캡션의 위치를 지정하기 위해 caption-side 속성을 사용할 수 있습니다.
- top : 캡션을 테이블의 위쪽에 배치합니다.
- bottom : 캡션을 테이블의 아래쪽에 배치합니다.
캡션 위쪽에 놓기
<table>
<caption>학생</caption>
<tr>
<th>이름</th>
<th>나이</th>
</tr>
<tr>
<td>Anna</td>
<td>20</td>
</tr>
<tr>
<td>Tina</td>
<td>22</td>
</tr>
</table>
table, td, th {
border: 1px solid black;
border-collapse : collapse;
}
caption {
caption-side: top;
}
caption-side: top;
caption-side 속성 값을 top으로 지정하여, caption을 테이블의 위쪽에 배치하였습니다.
캡션 아래쪽에 놓기
<table>
<caption>학생</caption>
<tr>
<th>이름</th>
<th>나이</th>
</tr>
<tr>
<td>Anna</td>
<td>20</td>
</tr>
<tr>
<td>Tina</td>
<td>22</td>
</tr>
</table>
table, td, th {
border: 1px solid black;
border-collapse : collapse;
}
caption {
caption-side: bottom;
}
caption-side: bottom;
caption-side 속성을 bottom으로 지정하여, 캡션을 테이블의 아래쪽에 위치시켰습니다.
캡션 정렬 (text-align)
- start: 쓰기 방향이 (왼쪽->오른쪽)이면 left와 동일하고, (오른쪽->왼쪽)이면 right와 동일합니다.
- end : 쓰기 방향이 (왼쪽->오른쪽)이면 right와 동일하고, (오른쪽->왼쪽)이면 left와 동일합니다.
- left : 왼쪽 정렬
- right : 오른쪽 정렬
- center : 가운데 정렬
- justify : 양쪽 정렬 ( 왼쪽과 오른쪽 끝에 텍스트를 맞춥니다.)
캡션 왼쪽 정렬하기 예제
<table>
<caption>학생</caption>
<tr>
<th>이름</th>
<th>나이</th>
</tr>
<tr>
<td>Anna</td>
<td>20</td>
</tr>
<tr>
<td>Tina</td>
<td>22</td>
</tr>
</table>
table, td, th {
border: 1px solid black;
border-collapse : collapse;
}
caption {
caption-side: top;
text-align: left;
}
text-align: left;
text-align 속성을 이용하여 caption을 왼쪽 정렬하였습니다.
반응형
'IT > HTML&CSS' 카테고리의 다른 글
[HTML/CSS] 짝수/홀수 선택자 (nth-child, odd, even) (0) | 2023.12.14 |
---|---|
[HTML/CSS] 테이블에 마우스 오버 시 행(row) 배경색 변경 (0) | 2023.12.13 |
[HTML/CSS] 테이블 테두리 색상 지정하기 (0) | 2023.12.11 |
[HTML/CSS] 마우스 드래그 배경색, 글자색 변경하기 (0) | 2023.12.10 |
[HTML/CSS] 첫번째, 마지막 요소 제외하고 선택하기 (:not(selector)) (0) | 2023.12.05 |
Comments