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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。