-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzindex.html
121 lines (119 loc) · 1.63 KB
/
zindex.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<html>
<head>
<style>
h1{
position: -webkit-sticky;
position:sticky;
top:220px;
}
body{
font-family:verdana;
margin:0;
}
div#main
{
margin:0 auto;
}
.common{
width:200px;height:200px;color:#fff;border:1px solid #333;position:absolute;
}
.one{
background-color:red;z-index:0;left:20px;top:40px;
}
.two{
background-color:yellow;z-index:1;left:40px;top:80px;
}
.three{
background-color:green;z-index:2;left:60px;top:120px;
}
.four{
background-color:blue;z-index:3;left:80px;top:160px;
}
.five{
background-color:magenta;z-index:4;left:100px;top:200px;
}
.six{
background-color:black;z-index:5;left:120px;top:240px;
}
.seven{
background-color:orange;z-index:6;left:140px;top:280px;
}
.seven:hover
{
background-color:pink;
}
</style>
</head>
<body>
<h1> Color picker</h1>
<div id="main">
<div class="common one">div#1</div>
<div class="common two">div#2</div>
<div class="common three">div#3</div>
<div class="common four">div#4</div>
<div class="common five">div#5</div>
<div class="common six">div#6</div>
<div class="common seven">div#7</div>
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
<br>hello
</body>
</html>