-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="stylesheet" href="style.css">
<title>Posição</title>
</head>
<body>
<header>
<div>Linha 01 static</div>
<div class="sticky">Texto STICKY</div>
<div class="relative alterada">Texto Relative 01
- Altera a posição do elemento a partir do seu ponto inicial
<div class="absolute">Elemento "LIVRE na Relative"</div>
</div>
<div>Linha 02 static</div>
<div class="sticky">Texto STICKY</div>
<div>Linha 03 static</div>
<p>Paragrafo acompanha o flow do HTML</p>
<div>Linha 04 static</div>
<div class="relative">Texto Relative 02</div>
<div class="absolute">Elemento "LIVRE na página"</div>
<div class="fixed">Texto fixo na página</div>
<div>Linha 05 static</div>
<div>Linha 06 static</div>
<div>Linha 07 static</div>
</header>
<main>
</main>
<footer>
</footer>
</body>
</html>