blob: 6cfe1e3bde2da8e345296caef2285a64e56d9fa7 (
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
|
<html>
<head>
<style type="text/css">
#grandparent {
width: 100px;
height: 100px;
-moz-transform-style: preserve-3d;
-moz-transform: translatex(200%);
}
#parent {
-moz-transform-style: preserve-3d;
}
#child {
width: 100px;
height: 100px;
background-color: red;
-moz-transform: translatex(-200px);
}
</style>
</head>
<body>
<div id="grandparent">
<div id="parent">
<div id="child"></div>
</div>
</div>
</body>
</html>
|