Example 4-16. Grouping table rows
<thead> <tr> <th>Table Head</th> <th>Table Head</th> <th>Table Head</th> </tr> </thead> <tfoot> <tr> <td>Table Foot</td> <td>Table Foot</td> <td>Table Foot</td> </tfoot> <tbody> <tr> <td>Table Body</td> <td>Table Body</td> <td>Table Body</td> </tr> </tbody> </tr> </table>
Browser support is more consistent for these elements. Figure 4-17 shows the results.
Figure 4-17. Grouping by rowyou'll notice that I've defined the foot in the middle of the table, but the row defined as the table foot still appears at the foot of the table.
by
updated