W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
<td>
和<th>
元素定義 headers 屬性,可用于使用屏幕閱讀器和其他技術(shù)更容易地處理表。
headers 屬性的值是一個或多個單元的 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">時間</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">© 2020 www.o2fo.com 編程獅</th>
</tr>
</tfoot>
</table>
</body>
</html>
全局id
屬性被添加到tbody
中的thead
和th元素中的th
個元素。
對于 tbody
中的每個 td
和 th
headers 屬性將單元格與列標(biāo)題相關(guān)聯(lián)。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: