Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <html>
2 <head>
3 <title>Width:auto and padding</title>
4 </head>
6 <body>
8 <div style="border-bottom:5px solid #000;
9 padding: 0px 0px 0px 45px;
10 overflow: hidden;
11 background-color:#fbb;
12 position: absolute;
13 left:0px;
14 top:20px"><div>The bottom border should end with my text (overflow:hidden)</div></div>
16 <div style="border-bottom:5px solid #000;
17 padding: 0px 0px 0px 45px;
18 overflow: visible;
19 background-color:#fbb;
20 position: absolute;
21 left:0px;
22 top:60px"><div>The bottom border should end with my text (overflow:visible)</div></div>
24 <div style="border-bottom:5px solid #000;
25 padding: 0px 0px 0px 45px;
26 overflow: auto;
27 background-color:#fbb;
28 position: absolute;
29 left:0px;
30 top:100px"><div>The bottom border should end with my text (overflow:auto)</div></div>
32 <div style="border-bottom:5px solid #000;
33 padding: 0px 0px 0px 45px;
34 background-color:#fbb;
35 position: absolute;
36 left:0px;
37 top:140px"><div>The bottom border should end with my text (no overflow defined)</div></div>
40 </body>
41 </html>