HTML <col> align 屬性
實(shí)例
在下面的例子中,col 元素為表格中的三個列規(guī)定了不同的對齊方式:
$lt;table width="100%" border="1"$gt;
$lt;col align="left"$gt;
$lt;col align="left"$gt;
$lt;col align="right"$gt;
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td>$53</td>
</tr>
</table>
$lt;col align="left"$gt;
$lt;col align="left"$gt;
$lt;col align="right"$gt;
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td>$53</td>
</tr>
</table>
嘗試一下 ?
瀏覽器支持
只有 Opera 和 Internet Explorer 8 以及更早的IE版本支持 align屬性(IE9不支持該屬性)。
定義和用法
HTML5 不支持 <col> align 屬性。
align 屬性規(guī)定與 col 元素相關(guān)的內(nèi)容的水平對齊方式。
語法
<col align="left|right|center|justify|char">
屬性值
值 | 描述 |
---|---|
left | 左對齊內(nèi)容(默認(rèn)值)。 |
right | 右對齊內(nèi)容。 |
center | 居中對齊內(nèi)容(th 元素的默認(rèn)值)。 |
justify | 對行進(jìn)行伸展,這樣每行都可以有相等的長度(就像在報紙和雜志中)。 |
char | 將內(nèi)容對準(zhǔn)指定字符。 |
更多建議: