-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabsolutePosition.html
More file actions
41 lines (41 loc) · 872 Bytes
/
Copy pathabsolutePosition.html
File metadata and controls
41 lines (41 loc) · 872 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AbsolutePosition</title>
<style>
#divone {
position: relative;
width: 400px;
height: 300px;
background-color: #dddddd;
padding: 20px;
border: 1px solid black;
}
.classone {
position: absolute;
bottom: 0;
top: 0;
right: 0;
width: 90%;
background-color: lightseagreen;
padding: 10px;
border: 1px solid black;
}
.classone,
.classtwo {
height: 100px;
}
</style>
</head>
<body>
<div id="divone">
divone
<div class="classone">
divtwo
<div class="classtwo">divthree</div>
</div>
</div>
</body>
</html>