Align and Width deprecated html tags

25 November 2010 by Rick ~ 0 Comments 946 views

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>

Use the same but inside the style:

<table style="width:100%">
  <tr>
    <td></td>
  </tr>
</table>

Subscribe by E-mail:

« »
Add a Comment

Use [code] example piece of code [/code] to insert code into your comment.