384876-1-ref.html (1289B)
1 <html> 2 <head> 3 <title>Width:auto and padding</title> 4 </head> 5 6 <body> 7 8 <div style="border-bottom:5px solid #000; 9 overflow: hidden; 10 background-color:#fbb; 11 position: absolute; 12 left:0px; 13 top:20px"><div style="padding: 0px 0px 0px 45px;">The bottom border should end with my text (overflow:hidden)</div></div> 14 15 <div style="border-bottom:5px solid #000; 16 overflow: visible; 17 background-color:#fbb; 18 position: absolute; 19 left:0px; 20 top:60px"><div style="padding: 0px 0px 0px 45px;">The bottom border should end with my text (overflow:visible)</div></div> 21 22 <div style="border-bottom:5px solid #000; 23 overflow: auto; 24 background-color:#fbb; 25 position: absolute; 26 left:0px; 27 top:100px"><div style="padding: 0px 0px 0px 45px;">The bottom border should end with my text (overflow:auto)</div></div> 28 29 <div style="border-bottom:5px solid #000; 30 background-color:#fbb; 31 position: absolute; 32 left:0px; 33 top:140px"><div style="padding: 0px 0px 0px 45px;">The bottom border should end with my text (no overflow defined)</div></div> 34 35 36 </body> 37 </html>