table(HTML)
table:table
元素 全文
table 表格容器
thead 表格標頭
tbody 表格內文
tr 表格行 table row
th 標頭 table head
td 內文 table data
tfoot table footer
code:html
<table>
<thead>
<tr>
<th>Table Row 1 Table Head</th>
<th>Table Head 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Table Row 2 Table Data</td>
<td>Table Data 2</td>
</tr>
</tbody>
</table>
th可加上scope屬性,標明為row或colum方便辨識
caption元素必須為table的第一個子元素,用作統整表格內容