<thead> : 표의 구조를 나눌 때 위에 표시되는 내용으로 제목에 해당하는 부분됨
<tbody> : 표의 구조를 나눌 때 중간에 표시되는 내용으로 본문에 해당하는 부분됨
<tfoot> : 표의 구조를 나눌 때 마지막에 표시되는 내용으로 요약이나 합계에 해당하는 부분됨
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
31
32
33
34
35
36
37
38
39
|
<! DOCTYPE html>
<html lang = "kr" >
<head>
<meta charset = "utf-8" >
<title> 키보드와 하루 </title>
</head>
<body>
<table style =' border : 1px solid #000 ; width : 100% ' >
1
<thead style =' background : yellow ' >
<tr>
<th> 이름 </th>
<th> 동 </th>
<th> 호 </th>
</tr>
</thead>
2
<tbody style =' text-align : center ; color : blue ' >
<tr>
<th> 테스트1 </th>
<td> 101동 </td>
<td> 1호 </td>
</tr>
<tr>
<th> 테스트2 </th>
<td> 102동 </td>
<td> 2호 </td>
</tr>
</tbody>
3
<tfoot>
<tr>
<td colspan = "3" style =' text-align : center ' >
요약이나 합계를 담는 영역
</td>
</tr>
</tfoot>
</table>
</body>
</html>
|
[html5] colspan , rowspan - 표에서 열,행 합치기 (0) | 2021.01.22 |
---|---|
[html5] <colgroup>,<col> - 표에서 열(col) 스타일 적용 (0) | 2021.01.21 |
[html5] <caption>,<figcaption> - 표에다가 제목 만들어 표시 (0) | 2021.01.19 |
[html5] <table>,<tr>,<td>,<th> - 일반적인 표 만들기 (0) | 2021.01.14 |
[html5] - <dl> - 제목과 설명을 구분하여 하나의 목록으로 만들기 (1) | 2021.01.13 |