最新的Web開發教程
 

HTML <thead> align Attribute

<HTML <thead>標記

左對齊裡面的內容<thead>元素:

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

定義和用法

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


瀏覽器支持

屬性
align

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

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


兼容性說明

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

CSS語法: <thead style="text-align:left">

CSS實例:調整內<THEAD>內容

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


句法

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

屬性值

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

<HTML <thead>標記