欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

HTML 表頭


HTML表頭 —— headers

<td><th>元素定義 headers 屬性,可用于使用屏幕閱讀器和其他技術(shù)更容易地處理表。

headers 屬性的值是一個(gè)或多個(gè)單元的 ID 屬性值。

以下代碼顯示了如何使用此屬性。

<!DOCTYPE HTML>
<html>
<head>
  <title>HTML 表頭(w3cschool.cn)</title>
  <style>
    thead th,
    tfoot th {
      text-align: center;
      background: #FE6A00;
      color: white
    }
    tbody th {
      text-align: center;
      background: lightgrey;
      color: grey;
    }
    tbody td {
      text-align: center;
    }
    thead [colspan],
    tfoot [colspan] {
      text-align: center;
    }
    #first,
    #second {
      background: #FAEBD7;
      color: #FE6A00;
    }
  </style>
</head>
<body>
  <table>
    <thead>
      <tr>
        <th id="time">時(shí)間</th>
        <th id="weather">天氣</th>
        <th id="temperature">溫度/℃</th>
        <th id="wind">風(fēng)向</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th id="first">7月24日</th>
        <td headers="weather first">多云</td>
        <td headers="temperatire first">26~37</td>
        <td headers="wind first">南風(fēng)</td>
      </tr>
      <tr>
        <th id="second">7月25日</th>
        <td headers="weather second">多云</td>
        <td headers="temperatire second">26~36</td>
        <td headers="wind second">南風(fēng)</td>
      </tr>
    </tbody>
    <tfoot>
      <tr>
        <th colspan="4">&copy; 2020 www.w3cschool.cn 編程獅</th>
      </tr>
    </tfoot>
  </table>
</body>
</html>

全局id屬性被添加到tbody中的thead和th元素中的th個(gè)元素。

對于tbody中的每個(gè)tdthheaders 屬性將單元格與列標(biāo)題相關(guān)聯(lián)。