+ 1
How to align the article on left
3 Réponses
+ 4
It's simple, just use align="left" for text and float:left for objects
Example -
<p style="align:left>This paragraph is aligned left</p>
<img style="float:left" src="image.jpg"></img>
+ 2
Try it...
+ 1
Thanks