HTML tfoot align 屬性
HTML <tfoot>align屬性
HTML <tfoot> 標(biāo)簽
實(shí)例
居中對(duì)齊 <tfoot> 元素中的內(nèi)容:
<table border="1"
width="100%">
? ? <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>
? ? <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 屬性。
注意:IE 無(wú)法正確地處理 "justify" 值,IE 會(huì)以居中的方式進(jìn)行處理。
注意:幾乎沒有瀏覽器能夠正確地處理 "char" 值。
定義和用法
HTML5 不支持 <tfoot> align 屬性。請(qǐng)使用 CSS 代替。
align 屬性規(guī)定 <tfoot> 元素中的內(nèi)容的水平對(duì)齊方式。
語(yǔ)法
<tfoot align="left|right|center|justify|char">
屬性值
值 | 描述 |
---|---|
left | 左對(duì)齊內(nèi)容(默認(rèn)值)。 |
right | 右對(duì)齊內(nèi)容。 |
center | 居中對(duì)齊內(nèi)容。 |
justify | 對(duì)行進(jìn)行伸展,這樣每行都可以有相等的寬度(就像在報(bào)紙和雜志中)。 |
char | 將內(nèi)容對(duì)準(zhǔn)指定字符。 |
HTML <tfoot> 標(biāo)簽