-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathscroll_relative.html
More file actions
43 lines (38 loc) · 842 Bytes
/
Copy pathscroll_relative.html
File metadata and controls
43 lines (38 loc) · 842 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.parent {
position: relative;
width: 400px;
height: 400px;
background: lightblue;
overflow: auto;
border: 1px solid purple
}
.content {
position: relative;
width: 200px;
height: 200px;
bottom: 0%;
background: lightgreen;
}
.child {
position: absolute;
bottom: 0;
right: 0;
width: 40px;
height: 40px;
background: blue;
}
</style>
</head>
<body>
<div class="parent">
<div class="content"></div>
<!-- <div class="child"></div> -->
</div>
</body>
</html>