table-tfoot-thead-1-ref.html 862 B

12345678910111213141516171819202122232425262728
  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-print">
  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. <table cellspacing="1" cellpadding="0">
  21. <tbody> <tr><td><div class="spacer"></div></td></tr></tbody>
  22. <tfoot><tr><td><div class="spacer"></div></td></tr></tfoot>
  23. </table>
  24. </body>
  25. </html>