Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
37 changes: 37 additions & 0 deletions Md01_Fundamentos_Dev_web/Bloco06/6.3/conteudo01.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flexbox - Flex Flow</title>
<style>
.box {
color: #9069EF;
background-color: rgb(243, 243, 243);
border: 2px solid #232525;
font-size: 50px;
height: 60px;
margin: 10px 5px;
text-align: center;
width: 30%;
}

.box-container {
background-color: #0fa36b;
display: flex;
/* ADICIONE AQUI SEUS TESTES */

}
</style>

</head>
<body>
<div class="box-container">
<div class="box">1</div>
<div class="box">2</div>
<div class="box">3</div>
<div class="box">4</div>
<div class="box">5</div>
</div>
</body>
</html>