Re: image align

I had the same problem, align is not allowed in W3C...

Try like this...

<div id="bodytext">
Text text text...
<div id ="imageright"><img src="image.gif"></div>
...Text text text...
</div>

in stylesheet...

#bodytext {
text-align : left;
width : 600px;
}

#imageright {
float : right;
}

Looks good to me!

cya

:)

Received on Friday, 27 September 2002 10:06:22 UTC