table-tfoot-thead-1-ref.html (873B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" 2 "http://www.w3.org/TR/html4/strict.dtd"> 3 <html lang="en-US" class="reftest-paged"> 4 <head> 5 <style type="text/css"> 6 div.filler {height:5px; width: 50px; border:thin solid blue;} 7 div.spacer { height: 0px; width: 0px; padding: 5px;border:thin solid green;} 8 tfoot div.spacer {border-color:orange; 9 height: 10px} 10 tbody div.spacer{border-width: 4px} 11 thead div.spacer{height: 140px} 12 </style> 13 </head> 14 <body> 15 <div class="filler"></div> 16 <table cellspacing="1" cellpadding="0"> 17 <thead><tr><td><div class="spacer"></div></td></tr></thead> 18 <tbody><tr><td><div class="spacer"></div></td></tr></tbody> 19 </table> 20 21 <table cellspacing="1" cellpadding="0" style="position: relative; top: -1px"> 22 <tbody> <tr><td><div class="spacer"></div></td></tr></tbody> 23 <tfoot><tr><td><div class="spacer"></div></td></tr></tfoot> 24 </table> 25 26 </body> 27 </html>