The tbody element should be used in conjunction with the head and tfoot elements.
Grouped Table (IExplore Only)
1. Group by row<head> ... </head> - The header of the table
<tbody> ... </tbody> - Table's body (Body)
<tfoot> ... </tfoot> - Footer of the table (Footer)
example:
<table border>
<head>
<tr><th>Food</th><th>Drink</th><th>Sweet</th></tr>
</head>
<tbody>
<tr><td>A</td><td>B</td><td>C</td></tr>
<tr><td>D</td><td>E</td><td>F</td></tr>
</tbody>
</table>
2. Group by column<colgroup align=#> #=left, right, center
example:
<table border width=160>
<colgroup align=left>
<colgroup align=center>
<colgroup align=right>
<head>
<tr><th>Food</th><th>Drink</th><th>Sweet</th></tr>
</head>
<tbody>
<tr><td>A</td><td>B</td><td>C</td></tr>
<tr><td>D</td><td>E</td><td>F</td></tr>
</tbody>
</table>
3. Column attribute control<col span=#> #=From the left number, the number of columns with the specified attribute
<col align=#> #=left, right, center
example:
<table border width=160>
<colgroup>
<col align=center span=2>
<colgroup align=right>
<head>
<tr><th>Food</th><th>Drink</th><th>Sweet</th></tr>
</head>
<tbody>
<tr><td>A</td><td>B</td><td>C</td></tr>
<tr><td>D</td><td>E</td><td>F</td></tr>
</tbody>
</table>