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


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


HTML thead char属性用于指定thead元素中内容字符的对齐方式。仅当align属性设置为“char”时,才可以使用此属性。它的默认值是页面语言的小数点。 HTML 5不支持它。

用法:

<thead char="character">

属性值:


  • character:用于指定字符以对齐内容。

例:

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

输出:

支持的浏览器:<thead> char属性不受任何主要浏览器的支持。



相关用法


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