HTML <td>標頭屬性用於指定包含當前數據單元格標頭信息的表單元格。
用法:
<td headers="header_id">
屬性值:其中包含值,即header_id,用於指定與表數據單元格相關的一個或多個Header單元格的ID分隔列表的空間。
例:
<!DOCTYPE html>
<html>
<head>
<style>
table,
th,
td {
border:1px solid green;
}
</style>
</head>
<body>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
HTML <td> Headers Attributes
</h2>
<table>
<tr>
<th id="name">Name</th>
<th id="father">Father's Name</th>
<th id="mother">Mother's Name</th>
<th id="phone">Phone No.</th>
</tr>
<tr>
<td headers="name">Krishna</td>
<td headers="father">Manoj Gupta</td>
<td headers="mother">Manisha Gupta</td>
<td headers="phone">12345</td>
</tr>
</table>
<br>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML <td>標頭屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- 蘋果Safari
- Opera
相關用法
- HTML <th> headers屬性用法及代碼示例
- HTML headers屬性用法及代碼示例
- HTML TableData headers用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML src屬性用法及代碼示例
- HTML for屬性用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML alt屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <td> headers Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。