-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpositioning.html
45 lines (44 loc) · 1.11 KB
/
positioning.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"content="width=device-width,initial-scale">
<meta http-equiv="X-UA-Compatible"content="ie-edge">
<title>DISPLAY PROPERTY</title>
</head>
<style>
.container{
border: 2px solid black;
background-color: sandybrown;
height: 3500px;
}
.box{
display: inline-block;
border:2px solid red;
width:150px;
height: 150px;
margin: 2px;
}
#a1{
position: absolute;
top: 34px;
left: 34px;
}
#b{
position: fixed;
right: 4px;
}
#c{
position: sticky;
top: 9px;
}
</style>
<body>
<div class="container">
<div class="box" id="a1"></div>
<div class="box" id="b"></div>
<div class="box" id="c"></div>
<div class="box" id="d"></div>
</div>
</body>
</html>