HTML <tr> 標簽的 align 屬性
定義和用法
align 屬性規(guī)定表格行中內(nèi)容的水平對齊方式。
實例
帶有居中對齊行的表格:
<table width="100%" border="1"> <tralign="center"
> <th>Month</th> <th>Savings</th> </tr> <tralign="center"
> <td>January</td> <td>$100</td> </tr> </table>
瀏覽器支持
所有瀏覽器都支持 align 屬性。
注釋:IE 無法正確地處理 "justify" 值,IE 會以居中的方式進行處理。
注釋:幾乎沒有瀏覽器能夠正確地處理 "char" 值。
語法
<tr align="value">
屬性值
值 | 描述 |
---|---|
left | 左對齊內(nèi)容(默認值)。 |
right | 右對齊內(nèi)容。 |
center | 居中對齊內(nèi)容(th 元素的默認值)。 |
justify | 對行進行伸展,這樣每行都可以有相等的長度(就像在報紙和雜志中)。 |
char | 將內(nèi)容對準指定字符。 |