《2018年10月21日》【连续383天】
标题:html标签复习,表格标签;
内容:
<table width="500" border=0" align="center" cellspacing="0" cellpadding="0">
<caption>排名表</caption>
<thead><tr align="center">
<th>排名</th>
<th>姓名</th>
<th>性别</th>
<th>成绩</th></thead>
</tr>
<tbody>
<tr align="center">
<td>1</td>
<td>张</td>
<td>男</td>
<td>100</td>
</tr>
<tr align="center">
<td>2</td>
<td>王</td>
<td>女</td>
<td>99</td>
</tr>
</tbody>
</table>
<table width="500" border=0" align="center" cellspacing="0" cellpadding="0">
<caption>排名表</caption>
<thead><tr align="center">
<th>排名</th>
<th>姓名</th>
<th>性别</th>
<th>成绩</th></thead>
</tr>
<tbody>
<tr align="center">
<td>1</td>
<td>张</td>
<td>男</td>
<td>100</td>
</tr>
<tr align="center">
<td>2</td>
<td>王</td>
<td>女</td>
<td>99</td>
</tr>
</tbody>
</table>