<thead> align 屬性的使用方法,align屬性指定 <thead>元素內(nèi)內(nèi)容的水平對齊方式,在線實例演示如何使用 <thead> align 屬性、瀏覽器的兼容性、語法定義及它的屬性值詳細資料等。
在<thead>元素內(nèi)將內(nèi)容右對齊:
<table style="width:100%;" border="1"> <thead align="right"> <tr> <th height="50">娃娃制造商</th> <th height="50">娃娃類型</th> </tr> </thead> <tr> <td>芭比公主</td> <td>6關(guān)節(jié)芭比娃娃</td> </tr> <tr> <td>芭比公主</td> <td>12關(guān)節(jié)芭比娃娃</td> </tr> </table>測試看看 ?/?
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 align 屬性。
注意:IE 無法正確地處理 "justify" 值,IE 會以居中的方式進行處理。
注意:幾乎沒有瀏覽器能夠正確地處理 "char" 值。
HTML5 不支持 <thead> align 屬性。請使用 CSS 代替。
align 屬性指定 <thead> 元素中的內(nèi)容的水平對齊方式。
<thead align="left|right|center|justify|char">
值 | 描述 |
---|---|
left | 左對齊內(nèi)容。 |
right | 右對齊內(nèi)容。 |
center | 居中對齊內(nèi)容(表頭元素的默認值)。 |
justify | 對行進行伸展,這樣每行都可以有相等的寬度(就像在報紙和雜志中)。 |
char | 將內(nèi)容對準(zhǔn)指定字符。 |