-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbox-basic.html
More file actions
72 lines (58 loc) · 1.4 KB
/
Copy pathbox-basic.html
File metadata and controls
72 lines (58 loc) · 1.4 KB
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
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Div</title>
<style>
.fl {
float: left;
}
.fr {
float: right;
}
.new {
float: left;
margin-left: 1%;
}
.clr {
clear: both;
}
.box2 {
height: 80px;
width: 49.50%;
margin-top: 10px;
}
.box3 {
height: 80px;
width: 32.65%;
margin-top: 10px;
}
.box4 {
height: 80px;
width: 24.25%;
margin-top: 10px;
}
.bg1 {
background-color: aqua;
}
.bg2 {
background-color: brown;
}
</style>
</head>
<body>
<div style=" height:80px; background-color:blueviolet;"></div>
<div class="box2 bg1 fl"></div>
<div class="box2 bg2 fr"></div>
<div class="clr"></div>
<div class="box3 bg2 fl"></div>
<div class="box3 bg1 new"></div>
<div class="box3 bg2 fr"></div>
<div class="clr"></div>
<div class="box4 bg1 fl"></div>
<div class="box4 bg1 new"></div>
<div class="box4 bg1 new"></div>
<div class="box4 bg1 fr"></div>
</body>
</html>