-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPositionAndUnits.html
55 lines (53 loc) · 1.1 KB
/
PositionAndUnits.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>Position And Units</title>
</head>
<style>
body{
height : 10000px;
}
.container{
background-color : green;
height : 3000px;
}
.box{
width : 200px;
height : 200px;
background-color: red;
margin : 10px;
}
.one{
position : relative;
/* top : 100px; */
left : 210px;
}
.two{
position : fixed;
background-color: blue;
top : 10px;
right : 10px;
}
.three{
position : absolute;
left : 500px;
top : 0px;
}
.four{
position : sticky;
background-color: aquamarine;
top : 20px;
/* left : 30px; */
}
</style>
<body>
<div class="container">
<div class="box one">Box 1</div>
<div class="box two">Box 2</div>
<div class="box three">Box 3</div>
<div class="box four">Sticky Box <br> Box 4</div>
</div>
</body>
</html>