-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloat.html
More file actions
50 lines (47 loc) · 760 Bytes
/
float.html
File metadata and controls
50 lines (47 loc) · 760 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
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>float</title>
<meta charset="utf-8"/>
<style type="text/css">
div.wrap{
width: 1000px;
height: 600px;
background-color: gray;
}
div#one{
width: 1000px;
height: 150px;
background-color: pink;
}
#two{
width: 500px;
height: 350px;
background-color: yellow;
margin: 5px;
float: left;
}
#three{
width: 475px;
height: 350px;
background-color: red;
margin: 5px;
float: left;
}
#four{
width: 1000px;
height: 90px;
background-color: blue;
float: left;
}
</style>
</head>
<body>
<div class="wrap">
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
<div id="four"></div>
</div>
</body>
</html>