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


HTML <thead> valign屬性用法及代碼示例


HTML thead valign屬性用於指定thead元素內內容的垂直對齊方式。

用法:

<thead valign="top | middle | bottom | baseline">

屬性值:


  • top:它將內容設置為top-align。
  • middle:它將內容設置為middle-align。
  • bottom:它將內容設置為bottom-align。
  • baseline:它將內容設置為基線。基線是大多數字符所在的行。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML <thead> valign Attribute 
  
    </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> HTML thead valign Attribute</h2> 
        
        <table> 
            <!-- thead tag starts from here -->
            <thead align="char" 
                   valign="bottom" 
                   char="M"> 
                <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>

輸出:

支持的瀏覽器:下麵列出了HTML <thead> valign Attribute支持的瀏覽器:

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


相關用法


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