当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <thead> align属性用法及代码示例


HTML <thead> align属性用于在表头(thead)部分内设置文本内容的水平对齐方式。

用法:

<thead align="left|right|center|justify|char">

属性值:


  • left:它设置文本left-align。
  • right:它设置文本right-align。
  • center:它设置文本center-align。
  • justify:它会拉伸文本以设置表格头中所有行的宽度相等。
  • char:它将text-align设置为特定字符。

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title> 
        HTML thead align 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 align 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> align属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <thead> align Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。