HTML <col> align 属性
HTML <col> align 属性用于设置与 col 元素相关的内容的水平对齐方式
HTML5 不支持 <col> align 属性
语法
<col align="left|right|center|justify|char">
属性值
值 | 描述 |
---|---|
left | 左对齐内容(默认值) |
right | 右对齐内容 |
center | 居中对齐内容(th 元素的默认值) |
justify | 对行进行伸展,这样每行都可以有相等的长度(就像在报纸和杂志中) |
char | 将内容对准指定字符 |
浏览器支持
只有 Opera 和 Internet Explorer 8 以及更早的 IE 版本支持 align 属性
IE9 不支持该属性
范例
<table width="100%" border="1"> <col align="left"> <col align="left"> <col align="right"> <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>