-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloat.html
More file actions
45 lines (37 loc) · 730 Bytes
/
float.html
File metadata and controls
45 lines (37 loc) · 730 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Float</title>
<style>
body {
background-color: #222;
}
.c1 {
background-color: red;
float: right;
}
.c2 {
background-color: green;
clear: right;
}
.c3 {
background-color: blue;
}
.c4 {
background-color: orange;
float: right;
}
div{
height: 150px;
width: 150px;
}
</style>
</head>
<body>
<div class="c1"></div>
<div class="c2"></div>
<div class="c3"></div>
<div class="c4"></div>
</body>
</html>