-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest08.html
More file actions
43 lines (43 loc) · 927 Bytes
/
Copy pathtest08.html
File metadata and controls
43 lines (43 loc) · 927 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>표 선 지우기</title>
<style>
table{
border-collapse: collapse;
width: 300px;
}
table td,th{
text-align: center;
border: 1px solid black;
}
.line1{
border-left: 0;
}
.line2{
border-right: 0;
}
</style>
</head>
<body>
<table>
<tr>
<th class="line1">번호</th>
<th>시설명</th>
<th class="line2">시설분류</th>
</tr>
<tr>
<td colspan="2" class="line1">-</td>
<td rowspan="2" class="line2">-</td>
</tr>
<tr>
<td rowspan="2" class="line1">-</td>
<td>-</td>
</tr>
<tr>
<td colspan="2" class="line2">-</td>
</tr>
</table>
</body>
</html>