forked from huogerac/css-box-model-explicado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index0.html
43 lines (43 loc) · 1.23 KB
/
index0.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
<!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>Box Model</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="index0.css" />
</head>
<body>
<div class="container">
<h1>CSS</h1>
<div class="box">
<h1 class="title">Box Model</h1>
</div>
<p>Representação do elemento HTML (tags) em um bloco retangular</p>
<p>Dividido em 4 partes:</p>
<ul>
<li>Conteúdo</li>
<li>Espaçamento interno (padding)</li>
<li>Borda (border)</li>
<li>Margem (margin) - <strong>Distanciar os elementos</strong></li>
</ul>
<div>
<h2>Representação de caixa</h2>
<div class="caixa descricao">
margem
<div class="borda descricao">
borda
<div class="preenchimento descricao">
preenchimento
<div class="conteudo">conteúdo</div>
</div>
</div>
</div>
</div>
</div>
<p class="rodape">
<a href="index1.html">Continuar</a>
</p>
</body>
</html>