tags:

views:

333

answers:

6

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

+7  A: 

short answer: yes.

Stefan Steinegger
+1  A: 

from wikipedia:

<td>…</td>  
    A table data cell.
    Proposed in the HTML 3.0 Drafts; Standardised in HTML 3.2; still current.
shoosh
+18  A: 

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

TH = Table Header

TD = Table Data.

Both are table cells.

Joe
Here is a link to the HTML 4.01 Specification that defines them: http://www.w3.org/TR/html401/struct/tables.html#h-11.2.6 (and refers to TH and TD as 'header' and 'data' cells - for the benefit of iyerrag).
Grant Wagner
A: 

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

FailBoy