Language References
Designates rows as the table’s header. | HTML 4, 4.01, 5 |
HTML Syntax
<thead
align = center | left | right
bgcolor = color
class = classname
id = value
style = css properties
title = text
valign = baseline | bottom | center | middle | top
event = script
>
This element is a block element.
NOTE: Both start and end tags are required.
THEAD Members
This example shows a two-row table. The first row is in the table header. The second row is in the table body.
<table>
<thead>
<tr>
<td>This text is in the table header.</td>
</tr>
<tbody>
<tr>
<td>This text is in the table body.</td>
</tr>
</table>