Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know it's a little off-topic, but what is the origin of the tag name "TD" used in HTML table markup?

"TH" seems like it should stand for "Table Header" and "TR" for "Table Row", but what about "TD"?

share|improve this question

4 Answers

up vote 29 down vote accepted

Looking at the HTML spec, it seems that it's an abbreviation for "table data cell", whereas th is an abbreviation of "table header cell".

share|improve this answer
+1 for the link to the source. Thanks! – Daniel Allen Langdon May 9 '11 at 22:20

The meaning of <td> is "table data"

share|improve this answer

I always assumed it stood for "Table Data"

share|improve this answer

TD = Table Data ... Intuitive, no?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.