Is there a way to define properties in the CSS for images aligned to the left when posting (<img src="source" align="left">) such as "margin: 0pt 10px 10px 0pt"?
Is there a way to define properties in the CSS for images aligned to the left when posting (<img src="source" align="left">) such as "margin: 0pt 10px 10px 0pt"?
ONly if you give them a class instead of an "align":
<img src="" class="left" />
CSS:
img.left{float:left;margin:0 10px 10px 0;}
I'm trying that but it doesn't work:
.storycontent img .left {
float : left;
margin : 0 10px 10px 0;
}
And then I put the image as <img src="source" class="left" /> But it doesn't float left at all or margin out.
Nevermind, I got it.
This topic has been closed to new replies.