Home > Article > Web Front-end > Html learning (4) - table tags
Table tag
Composition:
Title tag:
<caption>
, provides a title for the table.
Header tag:
<th>
. Generally, the first row or column of the table is formatted and displayed in bold.
Row label:
<tr>
Cell label:
<td>
, added to the row label. Add cells to rows.
[code]table
个人信息 | <td>张三 <tr> <td>30
---|
个人信息 | <tr> <td>张三 <td>30
---|
The above is the content of Html learning (4) - table tags. For more related content, please pay attention to the PHP Chinese website (www. php.cn)!