-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaixas-mais-uma-flexbox.html
41 lines (40 loc) · 1.07 KB
/
caixas-mais-uma-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
<!doctype html>
<html>
<head>
<style>
.container {
width: 75%;
margin: auto;
padding: 0;
background-color: #CCC;
display: flex;
}
.caixa {
border: 5px solid #33d;
border-radius: 10px;
background-color: #3dd;
font-size: 200%;
text-align: center;
line-height: 3;
margin-left: .5%;
padding: 0;
flex: 1;
height: 100px;
}
.caixa:first-child {
margin-left: 0;
}
</style>
<meta charset="utf-8">
<title>Quatro caixinhas lado a lado :)</title>
</head>
<body>
<div class="container">
<div class="caixa">1</div>
<div class="caixa">2</div>
<div class="caixa">3</div>
<div class="caixa">4</div>
</div>
<script src="prefixfree.min.js"></script>
</body>
</html>