最新的Web開發教程
 

HTML <tbody> align Attribute

<HTML <tbody>標籤

右對齊裡面的內容<tbody>元素:

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

定義和用法

align屬性指定裡面的內容的水平對齊方式<tbody>元素。


瀏覽器支持

屬性
align

注:IE不處理的"justify"表中適當值時,IE會居中內容,而不是。

注意:主流瀏覽器無支持"char"的價值。


兼容性說明

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

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

CSS實例:調整中的內容<tbody>

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


句法

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

屬性值

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

<HTML <tbody>標籤