[Solved] Removing style css from inside div tags


Yess it will

Here is the jsfiddle

<div style="width:936px;border:1px solid red">a</div>

is the same has

<div class="test_mlx">a</div>
div.test_ml {
    width:936px;border:1px solid red
}

Warning, user DavidTomas made a point :

Your widths require units (whether pixels (px), em, points (pt) or any
other). – David Thomas

solved Removing style css from inside div tags