5、HTML 表格标签
标准格式
<table>
<thead></thead> 表头(字段信息)
<tbody></tbody> 表单(数据信息)
</table>
表头
<table>
<thead>
<tr> tr表示一行
<td>username</td> 正常文本
<th>password</th> 加粗文本
<th>favorite</th>
</tr>
</thead>
<tbody></tbody>
</table>
表单
<table>
<thead>
<tr>
<th>username</th>
<th>password</th>
<th>favorite</th>
</tr>
</thead>
<tbody> 表单,一个tr一行
<tr>
<td>tobutomi</td>
<td>123456</td>
<td>code</td>
</tr>
<tr>
<td>egan</td>
<td>213213</td>
<td>eat</td>
</tr>
<tr>
<td>tutu</td>
<td>21333</td>
<td>football</td>
</tr>
</tbody>
table样式属性
border="1" 边框
cellpadding="5" 内边距
cellspacing="5" 外边距
<table border="1" cellpadding="5" cellspacing="5">
td 属性
rowspan="2" 占两行
colspan="2" 占两列
<td rowspan="2" colspan="2">egan</td>