cellspacing-ref.html (645B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>cellspacing</title> 5 </head> 6 <body> 7 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> 11 12 <!-- drop borders and ensure that we get the right amount of space --> 13 14 <div style="border: medium solid; margin: 1em 0; float: left; clear: left;padding: 8px">This is some text.</div> 15 16 <div style="border: medium solid; margin: 1em 0; float: left; clear: left; padding: 3px 5px 7px 9px">This is some text.</div> 17 18 </body> 19 </html>