2.18 表格
語意
即表格之意。
<table>
:表格標籤。
<tr>
:table row 的縮寫。
<td>
:table data 的縮寫。
<th>
:table heading 的縮寫。
<thead>
:table head 的縮寫。
<tfoot>
:table foot 的縮寫。
<tbody>
:table body 的縮寫。
說明
撰寫表格時,預設是不會有各欄的框線。
結構
按照定義,撰寫的順序,<thead>
先寫,緊接著 <tbody>
,再來才是 <tfoot>
。
範例
結果呈現:
rowspan 與 colspan 合併欄位
rowspan:以「列(橫)」的方式來算,合併幾個欄位。
colspan:以「行(直)」的方式來算,合併幾個欄位。
Last updated