最新的Web開發教程
 

HTML <col> align Attribute

<HTML <col>標籤

指定在表中的三列的取向:

<table style="width:100%">
  <col align="left">
  <col align="left">
  <col align="right">
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
</table>
試一試»

定義和用法

align屬性指定相關的內容的水平對齊方式<col>元素。


瀏覽器支持

屬性
align 不支持 不支持 不支持 不支持 不支持

align屬性只支持在Opera 12和更早的版本,和IE8及更早版本(而不是在IE9支持)。


兼容性說明

align的屬性<col>不支持HTML5。 使用CSS來代替。

CSS語法: <td style="text-align:right">

CSS實例:對準表中的列文

在我們的CSS教程中,你可以找到有關的更多詳細信息text-align屬性


句法

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

屬性值

描述
left 左對齊內容
right 右對齊內容
center 中心對齊內容
justify 伸展的線條,使每一行都有相同的寬度(就像在報紙和雜誌)
char 對齊內容到特定的字符

<HTML <col>標籤