-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample_13.html
More file actions
74 lines (74 loc) · 1.93 KB
/
Copy pathExample_13.html
File metadata and controls
74 lines (74 loc) · 1.93 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
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>소비자 가격</title>
<style>
table{
border-collapse: collapse;
width: 700px;
height: 180px;
table-layout: fixed;
}
caption{
text-align: right;
font-weight: bold;
margin-bottom: 10px;
}
thead{
height: 60px;
}
th{
background-color: blue;
color: white;
}
th,td{
text-align: center;
}
.price{
background-color: lightblue;
}
</style>
</head>
<body>
<table border="1">
<caption>(본사 정식 소비자 가격)</caption>
<thead>
<tr>
<th colspan="2">제품명</th>
<th>★★★★★★★<br>버텍스</th>
<th>★★★★★<br>래티튜드</th>
<th>★★★★<br>아티젠IB</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2" class="price">국내차량</td>
<td class="price">썬루프</td>
<td>150,000</td>
<td>90,000</td>
<td>170,000</td>
</tr>
<tr>
<td class="price">파노라마 썬루프</td>
<td>330,000</td>
<td>200,000</td>
<td>170,000</td>
</tr>
<tr>
<td rowspan="2" class="price">수입차량</td>
<td class="price">썬루프</td>
<td>180,000</td>
<td>110,000</td>
<td>90,000</td>
</tr>
<tr>
<td class="price">썬루프</td>
<td>350,000</td>
<td>240,000</td>
<td>200,000</td>
</tr>
</tbody>
</table>
</body>
</html>