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 <title>cellspacing</title>
5 </head>
6 <body>
8 <!-- compare to CSS border-spacing -->
9 <table border style="padding: 0; border-spacing: 7px"><tr><td>This is some text.</td></tr></table>
10 <table border style="padding: 0; border-spacing: 10px 7px"><tr><td>This is some text.</td></tr></table>
12 <!-- drop borders and ensure that we get the right amount of space -->
14 <div style="border: medium solid; margin: 1em 0; float: left; clear: left;padding: 8px">This is some text.</div>
16 <div style="border: medium solid; margin: 1em 0; float: left; clear: left; padding: 3px 5px 7px 9px">This is some text.</div>
18 </body>
19 </html>