-
Notifications
You must be signed in to change notification settings - Fork 0
/
position.html
39 lines (38 loc) · 938 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>relatinve position </title>
<style>
div{
width: 200px;
height: 200px;
}
.o{
background-color: rgb(136, 255, 0);
display: inline-block;
position: relative;
left: 412px;
}
.t{
background-color: rgb(255, 0, 85);
display: inline-block;
position: relative;
right: 200px;
}
.th{
background-color: rgb(25, 0, 255);
display: inline-block;
position: relative;
right: 200px;
}
</style>
</head>
<body>
<div class="o"></div>
<div class="t"></div>
<div class="th"></div>
</body>
</html>