DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> 使用thead、tfoot、 tbody制作一個表格
使用thead、tfoot、 tbody制作一個表格
編輯:HTML和Xhtml     
還有人很變態地用這三個標簽做出標題能跟隨表格,或者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>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved