Home>Article>Web Front-end> Parse Table tags, don't confuse td, th, tr anymore!
I have never mastered the Table tag in HTML very well, and often confuse td, th, and tr. Although native HTML is rarely used in current development, and front-end components written by others are basically used, table components written by others are generally designed according to the levels of the native table. [Recommended:HTML video tutorial]
So let’s sum it up today!
| Tag | Description | Common attributes |
|---|---|---|
| table | Top-level label of the table | border: border width; width: table width; align: alignment of table data; cellpadding: indicates the distance between the content in each cell and the border. The larger the value, the greater the visual experience of the table; cellspacing means that each The distance between adjacent cells |
| thead | The parent label of the header | |
| tr(table row) | The parent label of the column name, generally there is only one tr in a thead, because generally a table only has one row name | |
| th(table header cell) | represents the header cell, and the data inside is the column name | |
| tbody | Parent tag of the form data part | |
| data Cell, the specific data is placed in this label | ||
| represents the table footer | colspan represents column merging; rowspan represents row merging |
| 项目 | 单价/元 | 数量/斤 | 金额/元 |
|---|---|---|---|
| 白菜 | 1.00 | 3 | 3.00 |
| 西瓜 | 0.50 | 10 | 5.00 |
| 合计:8.00 |


The above is the detailed content of Parse Table tags, don't confuse td, th, tr anymore!. For more information, please follow other related articles on the PHP Chinese website!