Glubase - share your knowledge


All / Computers / Programming / HTML / XHTML





  • View Command

HTML / XHTML Reference

HTML / XHTML th definition

Browser support
IEFFOpSaf
FullFullFullFull

Type: block-level element

Syntax

<th> ... </th>

Description

Defines a table header cell in a table.

Attributes

Common attributes.


Example

[Try this example yourself]
<table border="1">
  <tr>
    <th>header 1</th>
    <th>header 2</th>
  </tr>
  <tr>
    <td>cell 1</td>
    <td>cell 2</td>
  </tr>
</table>

Output

header 1 header 2
cell 1 cell 2
  • Comments

No comments added.