-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path8table.html
50 lines (42 loc) · 887 Bytes
/
8table.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>实现跨行,跨列</title>
<style>
table {
/*取消表格之间的间隙*/
border-collapse: collapse;
border: 1px solid gray;
}
td,th{
border: 1px solid gray;
}
</style>
</head>
<body>
<table>
<tr>
<th>name</th>
<th>age</th>
<th colspan="3">phone</th>
</tr>
<tr>
<td>lisi</td>
<td>male</td>
<td colspan="2">983787386</td>
<td rowspan="3">海淀区</td>
</tr>
<tr>
<td>zhangsan</td>
<td>female</td>
<td colspan="2">28758278768</td>
</tr>
<tr>
<td>zhangsan</td>
<td>female</td>
<td colspan="2">28758278768</td>
</tr>
</table>
</body>
</html>