最新的Web開發教程
 

HTML <th> align Attribute

<HTML <th>標籤

左對齊的標題單元格內容:

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

定義和用法

align屬性指定標題單元格內容的水平對齊方式。


瀏覽器支持

屬性
align

注意:主流瀏覽器無處理"char"正確的價值。


兼容性說明

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

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

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

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


句法

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

屬性值

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

<HTML <th>標籤