-
Notifications
You must be signed in to change notification settings - Fork 0
/
z-index.html
48 lines (48 loc) · 1.05 KB
/
z-index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
position: absolute;
background-color: blanchedalmond;
}
.one {
z-index: 5;
}
.two {
z-index: 4;
}
.red {
width: 20px;
height: 20px;
background-color: red;
z-index: 5;
}
.blue {
width: 20px;
height: 20px;
background-color: blue;
z-index: 4;
}
.yellow {
width: 20px;
height: 20px;
background-color: yellow;
z-index: 6;
}
</style>
</head>
<body>
<!-- <div class="one">Master</div>
<div class="two">Platzi</div> -->
<section>
<div class="red">Red</div>
<div class="blue">Blue
<div class="yellow">Yellow</div>
</div>
</section>
</body>
</html>