HTML <col>align屬性

HTML col 標簽參考手冊HTML <col> 標簽

實例

在下面的例子中,col 元素為表格中的三個列規定了不同的對齊方式:

$lt;table width="100%" border="1"$gt;
  $lt;col align="left"$gt;
  $lt;col align="left"$gt;
  $lt;col align="right"$gt;
  <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>


瀏覽器支持

Internet Explorer Firefox Opera Google Chrome Safari

只有 Opera 和 Internet Explorer 8 以及更早的IE版本支持 align屬性(IE9不支持該屬性)。


定義和用法

HTML5 不支持 <col> align 屬性。

align 屬性規定與 col 元素相關的內容的水平對齊方式。


語法

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

屬性值

描述
left左對齊內容(默認值)。
right右對齊內容。
center居中對齊內容(th 元素的默認值)。
justify對行進行伸展,這樣每行都可以有相等的長度(就像在報紙和雜志中)。
char將內容對準指定字符。


HTML col 標簽參考手冊HTML <col> 標簽