-
Notifications
You must be signed in to change notification settings - Fork 2
/
index5.html
28 lines (27 loc) · 867 Bytes
/
index5.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
<!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="index5.css" />
</head>
<body>
<div class="container">
<h1>Como alterar o tamanho de uma caixa?</h1>
<h2>👉 Com o conteúdo dentro da caixa (tag)</h2>
<h2>👉 Com padding</h2>
<h2>👉 Com border</h2>
<h2>👉 Alterando width & height (tamanho & altura)</h2>
<h2>
👉 <strong>ATENÇÃO:</strong> margin colapsa usando o tamanho da maior
margem entre dois elementos
</h2>
<p class="rodape">
<a href="index6.html">Continuar</a>
</p>
</div>
</body>
</html>