2018年12月15日 星期六

[Back To Basic] HTML5 - Tables

Table

Table常見相關元素(elements)

  • <table></table> 資料表
  • <caption></caption> 資料表標題,<table>和<caption>中間不要有其他HTML元素
  • <tr></tr> 資料列
  • <th></th> 資料表頭
  • <td></td> 資料表cell,是資料的容器(container),可以包含任何類型的元素(elements)
e.g.
<table>
<tr>
<th>col 1</th><th>col 2</th>
</tr>
<tr>
<td>cell 1-1</td>
<td>cell 1-2</td>
</tr>
<tr>
<td>cell 2-1</td>
<td>cell 2-3</td>
</tr>
</table>

Table常見相關屬性(attributes)

  • colspan 跨欄
  • rowspan 跨列

Table相關元素(elements)

紀錄關鍵字...不常用
  • <colgroup>, <col>

沒有留言:

張貼留言