Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <html>
2 <head>
3 <title>Test mpadded</title>
4 <style type="text/css">
5 div#square1 {
6 position:absolute;
7 width: 20px;
8 height: 20px;
9 left: -25px;
10 top: 25px;
11 background: red;
12 }
13 div#square2 {
14 position: absolute;
15 width: 100px;
16 height: 100px;
17 left: 40px;
18 top:30px;
19 background: blue;
20 }
22 div#square3 {
23 position:absolute;
24 width: 200px;
25 height: 200px;
26 background: green;
27 }
28 /* left = lspace = -25;
29 top = HeightBig - HeightSmall - voffsetSmall
30 = 50 - 10 - 15 = 25px */
31 /* left = lsapce = 40px;
32 top = HeightVeryBig - HeightBig - voffsetBig
33 = 100 - 50 - 20 = 30px */
34 </style>
35 </head>
36 <body>
37 <div id="square3">
38 <div id="square2">
39 <div id="square1">
40 </div>
41 </div>
42 </div>
43 </body>
44 <html>