-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04_div_float.html
66 lines (63 loc) · 1.1 KB
/
04_div_float.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>04_DIV——float控制</title>
<style>
#container{
width: 1000px;
background: gray;
margin: 0 auto;
}
#header{
width:1000px;
height: 200px;
background: blue;
}
#main{
width: 1000px;
height: 500px;
background: orange;
}
#lside{
float: left;
width: 700px;
height: 500px;
background: pink;
}
.four{
width: 320px;
height: 230px;
background: black;
margin: 10px;
float: left;
}
#rside{
float: right;
width: 300px;
height: 500px;
background: green;
}
#footer{
width: 1000px;
height: 100px;
background: purple;
}
</style>
</head>
<body>
<div id='container'>
<div id='header'></div>
<div id='main'>
<div id='lside'>
<div class="four"></div>
<div class="four"></div>
<div class="four"></div>
<div class="four"></div>
</div>
<div id='rside'></div>
</div>
<div id='footer'></div>
</div>
</body>
</html>