重新練習熟悉 table 標籤,透過課程提供材料完成實作
table 標籤
table 標籤:
<table></table>
: mean a table.<tr></tr>
: a row in a table.<th></th>
: a header cell in a table.<td><td>
: a standard cell in a table.
增加語意化視為群組:
只是為增加語意方便閱讀,不帶有任何效果,樣式效果之後都得在 CSS 設定
<thead></thead>
: head 標題<tbody></tbody>
: body 內容<tfoot></tfoot>
: footer 頁尾
呈現方式<table>
<!-- 開頭 -->
<thead>
<tr>
<th>name</th>
<th>age</th>
</tr>
</thead>
<!-- 內容 -->
<tbody>
<tr>
<td>Tom</td>
<td>Jack</td>
</tr>
</tbody>
<!-- 表底 -->
<tfoot>
<tr>
<td>18</td>
<td>20</td>
</tr>
</tfoot>
</table>
<table> |