Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the origin of the HTML tag name: "<TD>"

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"?

like image 547
Vivian River Avatar asked May 09 '11 22:05

Vivian River


People also ask

What is HTML tag TD?

<td>: The Table Data Cell element. The <td> HTML element defines a cell of a table that contains data.

What is the name of TD tag?

The <td> tag defines a standard data cell in an HTML table. An HTML table has two kinds of cells: Header cells - contains header information (created with the <th> element)

What is TD and TR tag in HTML?

<tr>: The Table Row element. The <tr> HTML element defines a row of cells in a table. The row's cells can then be established using a mix of <td> (data cell) and <th> (header cell) elements.


3 Answers

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".

like image 80
lonesomeday Avatar answered Sep 28 '22 17:09

lonesomeday


The meaning of <td> is "table data"

like image 23
abaumg Avatar answered Sep 28 '22 17:09

abaumg


TD = Table Data ... Intuitive, no?

like image 41
David Fells Avatar answered Sep 28 '22 19:09

David Fells