Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

<div align="left" class="abcd"> css old method

Tags:

css

When I use the validator, it says that

the align attribute on the div element is obsolete. Use CSS instead

What do I do to resolve this?


2 Answers

Add a text-align declaration to a style block for .abcd:

.abcd { text-align: left; }

or set the style of the div itself locally:

<div class="abcd" style="text-align: left;">
like image 74
Delan Azabani Avatar answered Aug 27 '26 00:08

Delan Azabani


Use style attribute. For example:

<div style="text-align:center"></div>
like image 26
Antony Avatar answered Aug 27 '26 00:08

Antony