-
Notifications
You must be signed in to change notification settings - Fork 0
/
position.html
55 lines (52 loc) · 1.14 KB
/
position.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Posotion </title>
<style >
.col-1{
width: 400px;
height: 400px;
border: 2px black solid;
float: left;
background-color: antiquewhite;
}
/* .col-2{ for abslute position
width: 400px;
height: 400px;
border: 2px black solid;
float: left;
position: absolute;
left: 200px;
background-color: aqua; */
/* for relative position */
.col-2{
width: 400px;
height: 400px;
float: left;
position: relative;
top: 30px;
background-color: aqua;
}
.col-3{
width: 400px;
height: 400px;
border: 2px black solid;
float: left;
background-color: blue;
}
</style>
</head>
<body>
<div class="col-1">
1.
</div>
<div class="col-2">
2.
</div>
<div class="col-3">
3.
</div>
</body>
</html>