Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

HTML table td meaning

Writer Matthew Harrington

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

3

6 Answers

It stands for Table Data

table data cell

quickest answer:

(edit) here is the html5 edition:

2

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

Note also that tr stands for table row.

TD stand for Table Data.

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.

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