Code has been added to clipboard!
Deprecated align Attribute in HTML th
Example
<table width="100%">
<tr>
<th align="left">List of Fruits</th>
<th align="right">Price per Unit of Fruit</th>
</tr>
<tr>
<td>Apple</td>
<td>€0.60</td>
</tr>
<tr>
<td>Banana</td>
<td>€0.32</td>
</tr>
</table>