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


HTML thead用法及代碼示例


HTML中的<thead>標記用於將標頭賦予正文內容組。此標記在HTML表中用作頭和身體,即thead和tbody。

用法:

<thead>
// Table head Contents...
</thead>

屬性:

  • align:設置文本內容的對齊方式。
  • valign:設置文本內容的垂直對齊方式。
  • char:將<thead>元素內的內容對齊方式設置為字符。
  • charoff:它用於設置將從char屬性指定的字符開始對齊的字符數。此屬性的值采用數字形式。

例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>thead tag</title> 
        <style> 
            h1 { 
                color:green; 
            } 
            thead { 
                color:blue; 
            } 
            table, tbody, td { 
                border:1px solid black; 
                border-collapse:collapse; 
            } 
        </style> 
    </head> 
    <body> 
        <center> 
        <h1>GeeksforGeeks</h1> 
        <h2>thead Tag</h2> 
        <table> 
              
            <!-- thead tag starts from here -->
            <thead> 
                <tr> 
                <th>Name</th> 
                <th>User Id</th> 
                </tr> 
            </thead> 
            <!-- thead tag ends here -->
              
            <tbody> 
                <tr> 
                <td>Ram</td> 
                <td>@ram_b</td> 
                </tr> 
                <tr> 
                <td>Shashank</td> 
                <td>@shashankla</td> 
                </tr> 
            </tbody> 
        </table> 
        </center> 
    </body> 
</html>                    

輸出:

支持的瀏覽器:<thead>標簽支持的瀏覽器如下:

  • 穀歌瀏覽器
  • Edge
  • Firefox
  • Safari
  • Opera




相關用法


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