Code has been added to clipboard!
Deprecated width Attribute in HTML th
Example
<table>
<tr>
<th width="50%">Fruits</th>
<th width="100px">Prices</th>
</tr>
<tr>
<td>Apple</td>
<td>€0.60</td>
</tr>
<tr>
<td>Banana</td>
<td>€0.32</td>
</tr>
</table>