iyerrag
iyerrag

Reputation: 698

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

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

Upvotes: 51

Views: 12353

Answers (5)

shoosh
shoosh

Reputation: 78914

from wikipedia:

<td>...</td>  

A <table> data cell.

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

Upvotes: 2

Eoin Campbell
Eoin Campbell

Reputation: 44268

Yes, it stands for "table data cell"

http://www.december.com/html/4/element/td.html

Upvotes: 0

StevenMcD
StevenMcD

Reputation: 17482

Table Data Cell: http://htmlhelp.com/reference/html40/tables/td.html

Upvotes: 4

Joe
Joe

Reputation: 2437

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

TH = Table Header

TD = Table Data.

Both are table cells.

Upvotes: 79

Stefan Steinegger
Stefan Steinegger

Reputation: 64628

short answer: yes.

Upvotes: 13

Related Questions