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


HTML <col> align屬性用法及代碼示例


HTML <col> align屬性用於設置col元素內文本內容的水平對齊方式。 HTML 5不支持它。

用法:

<col align="left | right | center | justify | char">

屬性值:


  • left:它設置文本left-align。
  • right:它設置文本right-align。
  • center:它設置文本center-align。
  • justify:它會拉伸段落文本以將所有行的寬度設置為相等。
  • char:它將text-align設置為特定字符。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML col align Attribute 
  </title> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
  
    <h2> 
      HTML col align Attribute 
  </h2> 
  
    <table width="500" border="1"> 
        <col align="center"> 
            <col align="center"> 
  
                <tr> 
                    <th>Name</th> 
                    <th>Expenses</th> 
                </tr> 
  
                <tr> 
                    <td>BITTU</td> 
                    <td>2500.00</td> 
                </tr> 
  
                <tr> 
                    <td>RAKESH</td> 
                    <td>1400.00</td> 
                </tr> 
    </table> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML <col> align屬性支持的瀏覽器:

  • Google Chrome:不支持
  • Internet Explorer:不支持
  • Firefox:不支持
  • Safari:不支持
  • Opera:不支持


相關用法


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