-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZ-index.html
55 lines (52 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style media="screen">
body{
font-family: arial;
}
div{
width: 200px;
height: 200px;
position: absolute;
border: 1px solid #000;
font-size: 25px;
}
#box1{
background: linear-gradient(-45deg,#ACC0FE,#4B086D);
top: 100px;
left: 50px;
z-index: 1;
}
#box2{
background: linear-gradient(-45deg,#92FFC0,#002661);
top: 150px;
left: 100px;
z-index: 2;
}
#box3{
background:linear-gradient(-45deg,#CCFBFF,#EF96C5);
top: 200px;
left: 150px;
z-index: 3;
}
#box4{
background:linear-gradient(120deg,#A96F44,#F2ECB6);
top: 250px;
left: 200px;
z-index: 4;
}
</style>
</head>
<body>
<h1>Yahoo Baba: CSS Z-index</h1>
<div id="box1">A</div>
<div id="box2">B</div>
<div id="box3">C</div>
<div id="box4">D</div>
</body>
</html>