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