-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-06-container-flexbox.html
50 lines (50 loc) · 1.5 KB
/
index-06-container-flexbox.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
<!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>Document</title>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="cores.css" />
<link rel="stylesheet" href="index-06-container-flexbox.css" />
</head>
<body class="flex-collor-5 flex-collor-light--ft">
<h1>Container</h1>
<div class="container flex-collor-2">
<div class="item flex-collor-3">
<h2>Item 1</h2>
</div>
<div class="item flex-collor-4">
<h2>Item 2</h2>
</div>
<div class="item flex-collor-3">
<h2>Item 3</h2>
</div>
<div class="item flex-collor-3">
<h2>Item 4</h2>
</div>
<div class="item flex-collor-3">
<h2>Item 5</h2>
</div>
<div class="item flex-collor-3">
<h2>Item 6</h2>
</div>
</div>
<h3>
📦 Qual é o <code class="flex-collor-1--ft">flex-direction</code> padrão?
</h3>
<h3>
📦 Qual é o <code class="flex-collor-1--ft">justify-content</code> e
<code class="flex-collor-1--ft">align-items</code> padrão?
</h3>
<h3>
📦 Qual é o <code class="flex-collor-1--ft">flex-wrap</code> padrão? e o
overflow?
</h3>
<h3>📦 Podemos ter mais de um container?</h3>
<p>
<a class="small" href="index-07-items-flexbox.html">Continuar 👉</a>
</p>
</body>
</html>