frame_void_rules_cols.html (972B)
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 4 5 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 6 <title>Frame="void" and Rules="cols"</title> 7 <link rel="stylesheet" type="text/css" href="bordercol.css" /> 8 </head> 9 <body> 10 <table rules="cols" frame="void"> 11 <caption><a name="void-none">Frame="void" and Rules="cols"</caption> 12 <thead> 13 <tr> 14 <td>Row 1, Cell 1</td> 15 <td>Row 1, Cell 2</td> 16 <td>Row 1, Cell 3</td> 17 </tr> 18 </thead> 19 <tbody> 20 <tr> 21 <td rowspan="2">Row 2, Cell 1</td> 22 <td colspan="2">Row 2, Cell 2</td> 23 </tr> 24 <tr> 25 <td>Row 3, Cell 2</td> 26 <td rowspan="2">Row 3, Cell 3</td> 27 </tr> 28 <tr> 29 <td colspan="2">Row 4, Cell 1</td> 30 </tr> 31 </tbody> 32 <tfoot> 33 <tr> 34 <td>Row 5, Cell 1</td> 35 <td>Row 5, Cell 2</td> 36 <td>Row 5, Cell 3</td> 37 </tr> 38 </tfoot> 39 </table> 40 41 42 </body> 43 44 </html>