Quantcast
Channel: Deprecated Tags – Ricard Torres Code
Viewing all articles
Browse latest Browse all 4

Align and Width deprecated html tags

$
0
0

You should not be using the following tags anymore.

An other two HTML tags I came across. Upgrade yourself 😉

align

<div align="center"> </div>
Code language: HTML, XML (xml)

You could use instead:

<div style="margin:0 auto;"></div>
Code language: HTML, XML (xml)

width

<table width="100%"> <tr> <td></td> </tr> </table>
Code language: HTML, XML (xml)

Use the same but inside the style:

<table style="width:100%"> <tr> <td></td> </tr> </table>
Code language: HTML, XML (xml)

The post Align and Width deprecated html tags appeared first on Ricard Torres Code.


Viewing all articles
Browse latest Browse all 4

Latest Images

Trending Articles





Latest Images