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


HTML <tr> charoff屬性用法及代碼示例


HTML tr charoff屬性用於設置與char屬性指定的字符對齊的字符數。此屬性隻能在char屬性中使用,並且align屬性在tr元素中指定。

用法:

<tr charoff="number">

屬性值:


  • number:它包含指定對齊方式的數值。
  1. 正值:指示字符右邊的對齊方式。
  2. 負值:指示字符左側的對齊方式。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>tr charoff </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 tr charoff Attribute</h2> 
        <table> 
            <thead> 
                <!-- tr tag starts here -->
                <tr align="char" charoff="."> 
                    <th>Name</th> 
                    <th>User Id</th> 
                </tr> 
                <!-- tr tag end here -->
            </thead> 
            <tbody> 
                <tr> 
                    <td>Shashank</td> 
                    <td>@shashankla</td> 
                </tr> 
                <tr> 
                    <td>GeeksforGeeks</td> 
                    <td>@geeks</td> 
                </tr> 
            </tbody> 
        </table> 
    </center> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML tr charoff屬性支持的瀏覽器:

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


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <tr> charoff Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。