Standard cell - contains data (created by
element) The letters td refer to table data, that is, the content of the data cell.
Data cells can contain text, pictures, lists, paragraphs, forms, horizontal lines, tables, etc.
Form example:
<table border="1">
<tr>
<th>姓名</th>
<th>年龄</th>
</tr>
<tr>
<td>Peter</td>
<td>20</td>
</tr>
<tr>
<td>Lois</td>
<td>20</td>
</tr>
</table>
Recommended tutorial: "html video tutorial"
|