-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathz_index.html
56 lines (51 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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Example: Absolute positioning 2</title>
<style>
div {
width: 200px;
height: 200px;
}
#box_1 {
background: #ee3e64;
position: absolute;
top: 0;
left: 0;
z-index: 3;
}
#box_2 {
background: #44accf;
position: absolute;
top: 0;
right: 0;
}
#box_3 {
background: #b7d84b;
position: absolute;
bottom: 0;
left: 0;
}
#box_4 {
background: #ebde52;
position: absolute;
bottom: 0;
right: 0;
}
#container {
border: 1px solid black;
width: 300px;
height: 300px;
position: relative;
}
</style>
</head>
<body>
<div id="container">
<div id="box_1"></div>
<div id="box_2"></div>
<div id="box_3"></div>
<div id="box_4"></div>
</div>
</body>
</html>