HTML colgroup align 屬性
HTML <colgroup>align屬性
HTML <colgroup> 標簽
實例
兩個 <colgroup> 元素為表格中的三列規定了不同的對齊方式(注意第一個 <colgroup> 元素橫跨兩列):
<table width="100%" border="1">
<colgroup span="2" align="left"></colgroup>
<colgroup align="right"></colgroup>
<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>
<colgroup span="2" align="left"></colgroup>
<colgroup align="right"></colgroup>
<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 9 不支持)支持 align 屬性(IE 9 不支持)。
定義和用法
在 HTML5 中,不支持 <colgroup> align 屬性。
align 屬性規定列組中的內容的水平對齊方式。
語法
<colgroup align="left|right|center|justify|char">
屬性值
值 | 描述 |
---|---|
left | 左對齊內容(默認值)。 |
right | 右對齊內容。 |
center | 居中對齊內容(th 元素的默認值)。 |
justify | 對行進行伸展,這樣每行都可以有相等的寬度(就像在報紙和雜志中)。 |
char | 將內容對準指定字符。 |
HTML <colgroup> 標簽