-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathposition.html
51 lines (46 loc) · 1.47 KB
/
position.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Main</title>
<!-- <link rel="stylesheet" href="css/normalize.css" /> -->
<link rel="stylesheet" href="/css/reset.css" />
<link rel="stylesheet" href="/css/styles.css" />
<link rel="stylesheet" href="css/position.css" />
</head>
<body>
<div class="container relative">
<header>
<h1>Main</h1>
</header>
<nav class="mb-20">
<a href="/">main</a>
<a href="/float.html">float</a>
<a href="/position.html">position</a>
</nav>
<section class="parent mb-20">
<div class="box relative move">this is position relative</div>
</section>
<section class="parent mb-20">
<div class="box absolute move">
this is position absolute but no parent with position property applied
</div>
</section>
<section class="parent relative mb-20">
relative
<div class="parent">
other div
<div class="box absolute move">
this is position absolute there is a parent relative
</div>
</div>
</section>
<section class="parent mb-20">
<div class="box fixed message">this is position fixed</div>
</section>
<footer>made with ❤️ ironhack</footer>
</div>
</body>
</html>