Table.html
1.38 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<style>
table {
border-collapse: collapse;
}
th,
td {
text-align: left;
padding: 8px;
}
tr:nth-child(odd) {
background-color: #f2f2f2
}
th {
background-color: #4CAF50;
color: white;
column-span: all;
}
</style>
</head>
<body>
<div style="overflow-x:auto;">
<table border="1">
<thead>
<tr>
<th>
Quiz 1
</th>
</tr>
<tr>
<th>
학번
</th>
<td>
2010104019
</td>
<td>
2014110448
</td>
<td>
2012104136
</td>
</tr>
<tr>
<th>
점수
</th>
<td>40</td>
<td>50</td>
<td>
50
</td>
</tr>
</thead>
</table>
</div>
</body>
</html>