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