當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <th> headers屬性用法及代碼示例


HTML <th>標頭屬性用於指定包含當前標頭單元的標頭信息的表格單元。

用法:

<th headers="header_id">

屬性值:其中包含值,即header_id,用於指定與表標題單元格相關的一個或多個Header單元格的ID分隔列表的空間。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
  
    <!-- style to set border -->
    <style> 
        table, 
        th, 
        td { 
            border:1px solid black; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
  
    <h2>HTML <th>headers Attribute</h2> 
  
    <table> 
        <tr> 
            <th id="table"
                colspan="3">Username</th> 
        </tr> 
  
        <tr> 
            <th Headers="Username">geeks</th> 
            <th Headers="Username">For</th> 
            <th Headers="Username">Geeks</th> 
        </tr> 
    </table> 
</body> 
  
</html>

輸出:

支持的瀏覽器:<th>標頭Attributes支持的瀏覽器如下所示:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <th> headers Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。