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 }
12 .grandparentdiv {
13 background:yellow;
14 overflow:hidden;
15 }
16 .childdiv {
17 background:green;
18 }
19 .grandchilddiv {
20 background:red;
21 }
22 </style>
23 </head>
24 <body>
25 <div class="grandparentdiv">
26 <div class="childdiv">
27 <div class="grandchilddiv"></div>
28 </div>
29 </div>
30 </body>
31 </html>