-
Notifications
You must be signed in to change notification settings - Fork 5
/
newtheory.html
63 lines (54 loc) · 993 Bytes
/
newtheory.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
<html>
<head>
<title>Organization</title>
<style type=text/css>
.div1{
background-color: gray;
float: none;
justify-content: center;
width: 100%;
height: 20%;
border: 1px solid;
}
.div2{
background-color: blue;
float: left;
width: 25%;
height: 60%;
border: 1px solid;
}
.div3{
background-color:chocolate;
float:left;
width: 50%;
height: 60%;
border: 1px solid;
}
.div4{
background-color:cyan;
float:left;
width: 24%;
height: 60%;
border: 1px solid;
}
.div5{
background-color:darkmagenta;
clear: both;
width: 100%;
height: 20%;
border: 1px solid;
}
</style>
</head>
<body>
<div class = 'div1'> center</div>
<div>
<div class = 'div2'> left</div>
<div class = 'div3'> centre</div>
<div class = 'div4'> right</div>
</div>
<div class = 'div5'>
bottom
</div>
</body>
</html>