英[hed]   美[hɛd]  

n.頭部;頭腦;上端;首腦,首長

vt.用頭頂;前進;作為…的首領;站在…的前頭

vi.朝…行進;出發;向…方向移動;船駛往

adj.頭的;在前頭的;首要的;在頂端的

第三人稱單數: heads 複數: heads 現在分詞: heading 過去式: headed 過去分詞: headed

html thead標籤 語法

作用:定義表格的表頭。此標籤用於組合 HTML 表格的表頭內容。

說明:thead 元素應該與 tbody 和 tfoot 元素結合。 tbody 元素用於將 HTML 表格中的主體內容分組,而 tfoot 元素用於將 HTML 表格中的表註(頁腳)內容分組。

註解:如果您使用 thead、tfoot 以及 tbody 元素,您就必須使用全部的元素。它們的出現次序是:thead、tfoot、tbody,這樣瀏覽器就可以在收到所有資料前呈現頁腳了。您必須在 table 元素內部使用這些標籤。在預設情況下這些元素不會影響到表格的佈局。不過,您可以使用 CSS 使這些元素改變表格的外觀。

html thead標籤 範例

<html>
<head>
<style type="text/css">
thead {color:green}
tbody {color:blue;height:50px}
tfoot {color:red}
</style>
</head>
<body>

<table border="1">
  <thead>
    <tr>
      <th>Month</th>
      <th>Savings</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>January</td>
      <td>0</td>
    </tr>
    <tr>
      <td>February</td>
      <td></td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td>Sum</td>
      <td>0</td>
    </tr>
  </tfoot>
</table>

</body>
</html>

執行實例 »

點擊 "執行實例" 按鈕查看線上實例