在col标签上使用width属性或样式宽度?

时间:2014-02-20 14:13:21

标签: html css col

我想知道样式的width属性和width属性之间是否存在差异,以便从HTML的表格的colgroup中定义列的大小

<colgroup>
<col width="15" />
</colgroup>


<colgroup>
<col style="width:15px;" />
</colgroup>

我必须标准化许多页面,但我想知道它们之间是否存在特定的差异,html支持,性能或浏览器或HTML版本之间的兼容性等等?

1 个答案:

答案 0 :(得分:2)

从我看到的唯一区别是,不再支持HTML5 width属性

The <col> width attribute is not supported in HTML5.

http://www.w3schools.com/TAGs/att_col_width.asp