I want to know if there's a difference between the width property and width attribute from style in order to define the size of columns from a colgroup of a table in HTML
<colgroup>
<col width="15" />
</colgroup>
<colgroup>
<col style="width:15px;" />
</colgroup>
I have to standardize many pages but I want to know if there is a specific difference between them, html support, performance or compatibility between browsers or HTML versions...etc?