我想知道样式的width属性和width属性之间是否存在差异,以便从HTML的表格的colgroup中定义列的大小
<colgroup>
<col width="15" />
</colgroup>
<colgroup>
<col style="width:15px;" />
</colgroup>
我必须标准化许多页面,但我想知道它们之间是否存在特定的差异,html支持,性能或浏览器或HTML版本之间的兼容性等等?
答案 0 :(得分:2)
The <col> width attribute is not supported in HTML5.