Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <html>
2 <head>
3 <style type="text/css">
4 #grandparent {
5 -moz-transform-style: preserve-3d;
6 }
7 #parent {
8 -moz-transform-style: preserve-3d;
9 }
11 #child {
12 width: 100px;
13 height: 100px;
14 background-color: red;
15 -moz-transform: translatex(-200px);
16 margin-left: 200px
17 }
19 </style>
20 </head>
21 <body>
22 <div id="grandparent">
23 <div id="parent">
24 <div id="child"></div>
25 </div>
26 </div>
27 </body>
28 </html>