The table_header_type option affects how tables are structured when a table row is set as a header row. Note that this setting does not affect header columns.
The table_header_type option has four different settings: 'section’, `'cells', 'sectionCells', and 'auto'.
section - When a table row is set as a header row, the row (tr) is moved to the thead element. The cell types (td and/or th) are unaffected.
For example:
<table>
<thead>
<td> </td>
<th> </th>
</thead>
<tbody>
<td> </td>
<td> </td>
</tbody>
</table>
cells - When a table row is set as a header row, the row (tr) moves to the tbody element (if in a thead element). All table data cell elements (td) in the row are changed to table header cell elements (th).
For example:
<table>
<tbody>
<th> </th>
<th> </th>
<td> </td>
<td> </td>
</tbody>
</table>
sectionCells - When a table row is set as a header row, the row (tr) is moved to the thead element. All cells in the row are changed to table header cell elements (th).
For example:
<table>
<thead>
<th> </th>
<th> </th>
</thead>
<tbody>
<td> </td>
<td> </td>
</tbody>
</table>