Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 div {
6 position:relative;
7 width:300px;
8 height:200px;
9 left:50px;
10 top:50px;
11 transform-style:preserve-3d;
12 }
13 .grandparentdiv {
14 background:yellow;
15 overflow:hidden;
16 }
17 .childdiv {
18 background:green;
19 }
20 .grandchilddiv {
21 background:red;
22 }
23 </style>
24 </head>
25 <body>
26 <div class="grandparentdiv">
27 <div class="childdiv">
28 <div class="grandchilddiv"></div>
29 </div>
30 </div>
31 </body>
32 </html>