-
Notifications
You must be signed in to change notification settings - Fork 0
/
index04.html
28 lines (28 loc) · 956 Bytes
/
index04.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>div-table之table布局学习</title>
</head>
<body style="margin: 0px">
<table style="height: 950px; width: 100%; background-color: darkgrey">
<tr>
<td colspan="3" width="100%" height="10%" style="background-color: aqua">这是头部</td>
</tr>
<tr>
<td width="20%" height="80%" style="background-color: aqua">左菜单</td>
<td width="60%" height="80%" style="background-color: #ff6452">
<ul>
<li>iOS</li>
<li>Android</li>
<li>html5</li>
</ul>
</td>
<td width="20%" height="80%" style="background-color: aqua">左菜单</td>
</tr>
<tr>
<td colspan="3" width="100%" height="10%" style="background-color: burlywood">底部</td>
</tr>
</table>
</body>
</html>