colspan and
rowspan
Of course, you can mix colspan and rowspan to get a range of various tables. Example 4-13 demonstrates a mix of column and row spanning.
<table width="90%" border="1" cellspacing="5" cellpadding="5" summary="This table combinescolspan and rowspan"> <caption>Combining colspan and rowspan</caption> <tr> <th colspan=2" rowspan="2">Header (spans 2 columns and 2 rows)</th> <td>data</td> </tr> <tr> <td>data</td> </tr> <tr> <td>data</td> <td>data</td> <td>data</td> </tr> </table>
Figure 4-14 shows the results.