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