還有人很變態地用這三個標簽做出標題能跟隨表格,或者tbody固定高度,走出自動出現滾動條的功能。
復制代碼代碼如下:
<title>thead、tfoot 以及 tbody標簽</title>
<table border="1">
<thead>
<tr>
<th>科目</th>
<th>分數</th>
</tr>
</thead>
<tbody>
<tr>
<td>語文</td>
<td>99</td>
</tr>
<tr>
<td>數學</td>
<td>60</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>總分</td>
<td>159</td>
</tr>
</tfoot>
</table>