Why does html call it 'td' and not 'tc' for table cell?

Viewed 10711

I haven't browsed through the spec, though I doubt any info is in there. Does it stand for table data?

5 Answers

You have two options for table cells: TD or TH.

TH = Table Header

TD = Table Data.

Both are table cells.

from wikipedia:

<td>...</td>  

A <table> data cell.

Proposed in the HTML 3.0 Drafts; Standardised in HTML 3.2; still current.

Related