frame_box_rules_none-collapse-ref.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
  2. <html lang="en"><head>
  3. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  4. <title>Frame="box" and Rules="none" and "border-collapse: collapse"</title>
  5. <link rel="stylesheet" type="text/css" href="bordercol.css" />
  6. </head>
  7. <table rules="none" frame="box" style="border-collapse: collapse; background: LightCyan; border: solid 1px">
  8. <caption><a name="box-none">Frame="box" and Rules="none"</caption>
  9. <thead id="tablehead">
  10. <tr>
  11. <td>Row 1, Cell 1</td>
  12. <td>Row 1, Cell 2</td>
  13. <td>Row 1, Cell 3</td>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <tr>
  18. <td rowspan="2">Row 2, Cell 1</td>
  19. <td colspan="2">Row 2, Cell 2</td>
  20. </tr>
  21. <tr>
  22. <td>Row 3, Cell 2</td>
  23. <td rowspan="2">Row 3, Cell 3</td>
  24. </tr>
  25. <tr>
  26. <td colspan="2">Row 4, Cell 1</td>
  27. </tr>
  28. </tbody>
  29. <tfoot id='tablefooter'>
  30. <tr>
  31. <td>Row 5, Cell 1</td>
  32. <td>Row 5, Cell 2</td>
  33. <td>Row 5, Cell 3</td>
  34. </tr>
  35. </tfoot>
  36. </table>
  37. </body>
  38. </html>