".">
In HTML5, td refers to table data, which represents each cell in the table; it is a label element used to define standard cells in the table and is used to contain data. The td element needs to be defined inside the tr element, and the text it contains is usually rendered in a left-aligned style, with the syntax "
data".
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
In HTML5, the full name of td is "table data", which means table data and represents the cells in the table.
The tag is used to define standard cells within the table. The text inside the td element is usually rendered as left-aligned text.There are two types of cells in HTML forms:
Header cell - contains header information (created by the th element)
Standard cell - contains data (created by td element)
The cell element th or td element needs to be defined inside the tr element, A tr element contains one or more th or td elements.
Example:
商品 | 价格 |
---|---|
T恤 | ¥100 |
牛仔褂 | ¥250 |
牛仔库 | ¥150 |
Attributes supported in html5:
Attributes | Value | Description |
---|---|---|
colspan | number | Specify the number of columns that a cell can span. |
headers | header_id | Specifies one or more header cells associated with the cell. |
rowspan | number | Set the number of rows that the cell can span. |
#Tip: If you need to span content across multiple rows or columns, use the colspan and rowspan attributes!
商品 | 价格 |
---|---|
T恤 | ¥100 |
牛仔褂 | |
牛仔库 | ¥150 |
Related recommendations: "html video tutorial"
The above is the detailed content of What does td mean in html5. For more information, please follow other related articles on the PHP Chinese website!