最新的Web開發教程
 

HTML <table> align Attribute

<HTML <table>標記

右對齊的HTML表格:

<table align="right">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>
試一試»

定義和用法

align屬性根據周圍文本指定表的對齊方式。

通常情況下,一個HTML表格將之前和之後休息。 該align屬性允許其他HTML元素環繞表。


瀏覽器支持

屬性
align

兼容性說明

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

CSS語法: <table style="float:right">

CSS實例:表格對齊

在我們的CSS教程中,你可以找到有關的更多詳細信息float property


句法

<table align="left|right|center">

屬性值

描述
left 左對齊表
right 右對齊表
center 中心 - 對齊表

<HTML <table>標記