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


HTML tbody charoff用法及代码示例


HTML tbody charoff属性用于设置与char属性指定的字符对齐的字符数。此属性只能在char属性中使用,并且align属性在tbody元素中指定。

用法:

<tbody charoff="number">

属性值:



  • number:它包含指定对齐方式的数值。
    1. 正值:指示字符右边的对齐方式。
    2. 负值:指示字符左侧的对齐方式。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>html tbody charoff Attribute</title> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        th { 
            color:blue; 
        } 
          
        table, 
        tbody, 
        td { 
            border:1px solid black; 
            border-collapse:collapse; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1>GeeksforGeeks</h1> 
        <h2> HTML tbody charoff Attribute</h2> 
        <table> 
            <thead> 
                <tr> 
                    <th>Name</th> 
                    <th>User Id</th> 
                </tr> 
            </thead> 
  
            <!-- tbody tag starts from here -->
            <tbody align="char" char="." charoff="2"> 
                <tr> 
                    <td>Shashank</td> 
                    <td>@shashankla</td> 
                </tr> 
                <tr> 
                    <td>GeeksforGeeks</td> 
                    <td>@geeks</td> 
                </tr> 
            </tbody> 
            <!-- tbody tag ends here -->
  
        </table> 
    </center> 
</body> 
  
</html>

输出:

支持的浏览器:下面列出了HTML tbody charoff属性支持的浏览器:

  • 不支援Google Chrome
  • 不支持Internet Explorer
  • 不支持Firefox
  • 不支持Apple Safari
  • 不支援Opera



相关用法


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