<td>

The table data cell element holds a single piece of tabular data.

Since HTML 3.2 Spec ↗

Syntax

<td>...</td>

Examples

<tr>
  <td colspan="2">Spans two columns</td>
</tr>
Output
Renders one cell that visually stretches across two columns.

Notes

Use colspan and rowspan to merge cells. For header cells use <th> instead so assistive tech announces them as headers.

Browser & runtime support

EnvironmentSince version
chrome 1.0
firefox 1.0
safari 1.0
edge 12

See also