-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercicios_quadrados.html
68 lines (56 loc) · 1.34 KB
/
exercicios_quadrados.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title> Revisão Seletores CSS</title>
<link href="css/normalize.css" rel="stylesheet">
<style>
#container {
max-width: 1000px;
width: 90%;
margin: 0 auto;
background-color: white;
position: relative;
/*Define o contexto para esse elemento*/
height: 700px;
}
body {
background-color: black
}
#um {
width: 250px;
height: 250px;
position: absolute;
background-color: mediumpurple;
top: 216px;
left: 361px;
}
#dois {
width: 150px;
height: 150px;
position: absolute;
background-color: orange;
right: 440px;
top: 269px;
}
#tres {
width: 110px;
height: 110px;
position: absolute;
background-color: #ff0055;
bottom: 300px;
left: 430px;
}
</style>
</head>
<body>
<div id="container">
<div id="um" class="caixas">
</div>
<div id="dois" class="caixas">
</div>
<div id="tres" class="caixas">
</div>
</div>
</body>
</html>