-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathposition.html
More file actions
52 lines (52 loc) · 1.18 KB
/
Copy pathposition.html
File metadata and controls
52 lines (52 loc) · 1.18 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Position</title>
<style>
#divOne {
box-sizing: border-box;
width: 100%;
background-color: lightblue;
padding: 10px;
overflow: hidden;
border: 1px solid red;
}
#divTwo {
display: block;
box-sizing: border-box;
border: 2px solid black;
background-color: lightgoldenrodyellow;
width: 95%;
position: relative;
left: 20px;
}
#divThree {
background-color: lightgreen;
display: block;
box-sizing: border-box;
border: 2px solid black;
width: 95%;
position: relative;
top: 20px;
left: 30px;
}
</style>
</head>
<body>
<div id="divOne">
main div One
<div id="divTwo">
div two
<h1 style="position: relative; margin-left: 20%; left: 10%;">
divOne>divTwo
</h1>
</div>
<div id="divThree">
div Three
<h1>divOne>DivThree</h1>
</div>
</div>
</body>
</html>