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


HTML <colgroup> charoff属性用法及代码示例


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

用法:

<colgroup charoff="number">

属性值:


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

    例:

    <!DOCTYPE html> 
    <html> 
      
    <head> 
        <title> 
            HTML ColumnGroup charoff Attribute 
        </title> 
      
        <style> 
            #myColGroup { 
                background:green; 
            } 
              
            table { 
                color:white; 
                margin-left:180px; 
                background:yellow; 
            } 
              
            #Geek_p { 
                color:green; 
                font-size:30px; 
            } 
              
            td { 
                padding:10px; 
            } 
              
            h1, 
            h2 { 
                text-align:center; 
            } 
        </style> 
    </head> 
      
    <body> 
      
        <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
      
        <h2>  
            HTML ColumnGroup charoff Attribute  
        </h2> 
      
        <table> 
            <colgroup id="myColGroup" 
                      span="3"
                      align="char" 
                      char="." 
                      charoff="3"> 
            </colgroup> 
      
            <tr> 
                <th>S.No</th> 
                <th>Title</th> 
                <th>Geek_id</th> 
            </tr> 
            <tr> 
                <td>Geek_1</td> 
                <td>GeekForGeeks</td> 
                <th>Geek_id_1</th> 
            </tr> 
            <tr> 
                <td>Geek_2</td> 
                <td>GeeksForGeeks</td> 
                <th>Geek_id_2</th> 
            </tr> 
        </table> 
    </body> 
      
    </html>

    输出:

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

    • 谷歌浏览器 不支持
    • IE浏览器 不支持
    • 火狐浏览器 不支持
    • 苹果Safari 不支持
    • Opera 不支持


相关用法


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