Align and Width deprecated html tags
You should not be using the following tags anymore.
An other two HTML tags I came across. Upgrade yourself
align
<div align="center"></div>
You could use instead:
<div style="margin:0 auto;"</div>
width
<table width="100%">
<tr>
<td></td>
</tr>
</table>
<tr>
<td></td>
</tr>
</table>
Use the same but inside the style:
<table style="width:100%">
<tr>
<td></td>
</tr>
</table>
<tr>
<td></td>
</tr>
</table>
Related PostsIf you liked Align and Width deprecated html tags; the posts below might interest you too:
|



