declaration css to inline style upgrade

Shane174

New Member
I need convert css style file to inline style in tag. sample:\[code\]css file:.x1{color:red;}.x2{border:2px solid black;}.x3{font-size:10px;}html file:<p class="x1">only x1</p><p class="x2">only x2</p><p class="x3 x2">x3+x2</p><p class="x3 x2 x1">x3+x2+x1</p>result file:<p style="color:red;">only x1</p><p style="border:2px solid black;">only x2</p><p style="font-size:10px; border:2px solid black;">x3+x2</p><p style="font-size:10px; border:2px solid black; color:red;">x3+x2+x1</p>\[/code\]I tried using Html-Tity (Jtiny) but dont have option for this case. Help me please...
 
Back
Top