blob: 877f50898ab35f5ace8bc2508f6ba5d65c8a20c8 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>z-index should work correctly for elements with perspective</title>
<style>
#perspective {
perspective: 300px;
perspective-origin: top left;
}
#front {
z-index: 2;
width: 100px;
height: 100px;
background-color: #00FF00;
transform: translateX(0px);
position: relative;
}
#back {
z-index: 1;
width: 100px;
height: 100px;
background-color: #FF0000;
transform: translateY(-100px);
position: relative;
}
</style>
<div id="perspective">
<div id="front"></div>
<div id="back"></div>
</div>
|