-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiv布局-小米.html
50 lines (50 loc) · 1.06 KB
/
div布局-小米.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 lang = "en">
<head>
<meta charset = "UTF-8">
<title>小米官网</title>
<style type="text/css">
#menu{
background-color:yellow;
height:80px;
}
#side_bar{
background-color:blue;
height:500px;
width:80%;
float:left;
}
#content_box1{
background-color:green;
height:500px;
width:20%;
float:left;
}
#footer{
background-color:pink;
height:100px;
clear:both;
}
</style>
</head>
<body>
<div id = "menu">
<p>首页</p>
<p>电视 手机 电脑 路由器</p>
</div>
<div id="side_bar">
<ul>
<li>手机</li>
<li>电视</li>
<li>小家电</li>
<li>TCL</li>
</ul>
</div>
<div id="content_box1">
<h2>打广告1</h2>
</div>
<div id="footer">
<h3>footer...</h3>
</div>
</body>
</html>