例
右對齊第二表行中的所有單元格的內容:
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr align="right">
<td>January</td>
<td>$100</td>
</tr>
</table>
試一試» 定義和用法
該align屬性指定表行內容的水平對齊方式。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
align | 是 | 是 | 是 | 是 | 是 |
注意:主流瀏覽器無處理"char"正確的價值。
兼容性說明
該align的屬性<tr>不支持HTML5。 使用CSS來代替。
CSS語法: <tr style="text-align:right">
在我們的CSS教程中,你可以找到有關的更多詳細信息text-align property 。
句法
<tr align="left|right|center|justify|char">
屬性值
值 | 描述 |
---|---|
left | 左對齊內容(默認為<td>元素) |
right | 右對齊內容 |
center | 中心對齊內容(默認為<th>元素) |
justify | 伸展的線條,使每一行都有相同的寬度(就像在報紙和雜誌) |
char | 對齊內容到特定的字符 |