12-20-2004, 08:29 AM
Sketch,Dec 20 2004, 06:50 AM Wrote:noooooooooooooo but I need it all to go around the picture. I need like a wordwrap or something.
[right][snapback]63202[/snapback][/right]
I am not sure what you mean. Can you try to describe it a bit more exactly, or maybe give an example? The CSS property 'float' might be what you are looking for. Here is an example:
Code:
<p>
A text full of interesting information...
<img src='image.png' alt='A really nice image' style='float:left;' />
...interesting information continued...
</p>
<p style='clear:both;'> <!-- this cancels the float. the following text should be displayed below the image -->
Another very interesting text...
</p>
HTH.