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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。