-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseparando_elementos.html
62 lines (48 loc) · 1.07 KB
/
separando_elementos.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Separando Elementos</title>
<meta charset="UTF-8">
<style type="text/css">
.conteudo1 {
border: 1px solid red;
background: orange;
width: 200px;
height: 200px;
position: absolute;
z-index: 2;
}
.conteudo2 {
border: 1px solid red;
background: green;
width: 200px;
height: 200px;
position: absolute;
top: 80px;
left: 80px;
z-index: 1;
}
.conteudo3 {
border: 1px solid red;
background: blue;
width: 200px;
height: 200px;
position: absolute;
top: 160px;
left: 160px;
z-index: 0;
}
</style>
</head>
<body>
<div class="conteudo1">
conteudo1
</div>
<div class="conteudo2">
conteudo2
</div>
<div class="conteudo3">
conteudo3
</div>
</body>
</html>