CSS2.html
735 Bytes
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
40
41
42
43
44
45
46
47
48
<html>
<meta charset="utf-8">
<title>CSS2</title>
<style>
table, th, td
{
border-collapse: collapse;
}
tr:nth-child(even){background-color: red;}
</style>
<body>
<table>
<caption>홈런순위</caption>
<!--표의 제목같은 역할-->
<thead>
<tr>
<th>이름</th>
<th>홈런</th>
</tr>
</thead>
<!--표의 제목같은 역할-->
<tbody>
<tr>
<td>이대호</td>
<td>41</td>
</tr>
<tr>
<td>최진행</td>
<td>27</td>
</tr>
<tr>
<td>홍성은</td>
<td>26</td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="2">2010-08-22</th>
</tr>
</tfoot>
</table>
</body>
</html>