117

In HTML table, what does td stand for? I mean literally, what is it an acronym for? Table division? Table data?

Dr. Gut
  • 1,240
  • 2
  • 20
ilija veselica
  • 8,936
  • 36
  • 89
  • 143
  • 3
    Kind of weird how everyone calls `td` a table "cell", but it's really a table datum (data, plural). – geoff Apr 21 '14 at 22:29
  • To clarify: "datum" is singular, "data" is plural. – ecoologic Jan 23 '19 at 06:38
  • While it may be true that "datum" is the singular form, there are few use cases for it. This is because "data" is treated like an uncountable noun, similar to "water" or "money". We ask "how much do you have?" and describe that amount with units of measurement. (ml, ¥, GiB) Or maybe we don't specify an exact amount. (A glass of water. A lot of money. A piece of data.) If somebody starts talking to me about a datum, I want to know how much a datum is. Is it a bit? A letter? A word? At that point we're back to measurement. Stick with "data", as a mass noun, and keep it simple. Off-topic. Sorry. – Mentalist Sep 10 '19 at 01:39

9 Answers9

152

It stands for Table Data

Macros
  • 7,041
  • 2
  • 33
  • 60
57

table data cell

quickest answer: http://www.w3.org/TR/html401/struct/tables.html#edef-TD

(edit) here is the html5 edition: http://www.w3.org/TR/html5/tabular-data.html#the-td-element

Nathan
  • 1,630
  • 12
  • 15
  • 7
    It's too bad the w3's documentation is such an eye sore. – Mark Fox Feb 14 '13 at 22:47
  • 2
    I found W3C to be esoteric at first, but once one adjusts to the format is (for me, at least) the quickest and most reliable reference. – Nathan Feb 15 '13 at 15:08
15

It means table data which is basically a cell or column.

Note also that tr stands for table row.

10

TD stand for Table Data.

Basant B. Pandey
  • 347
  • 7
  • 22
7

Yeah, table data. It doesn't make sense if you don't know about th, table header, since without it table cell would be a better one.

JHollanti
  • 2,137
  • 7
  • 25
  • 38
0

Stands for Table Data You use it for putting data in your table

0

The fifth paragraph in this section of the HTML 4.01 specifications explicitly states:

Table cells may either contain "header" information (see the TH element) or "data" (see the TD element).

MattAllegro
  • 4,414
  • 5
  • 33
  • 42
-4

Data Table is what td stands for pretty sure of it

  • 1
    You should check an answer before posting it. Stackoverflow shouldn't be a page of believing but of knowing. See: http://www.w3schools.com/html/html_tables.asp - `Table rows are divided into table data with the tag.` – Gombat Sep 20 '15 at 22:35
-5

To add rows to your table use the <tr> and </tr> tags.

<td> means Table Data but there is no relation to the columns and data.

Mr Lister
  • 42,557
  • 14
  • 95
  • 136