how do i wrap text around 5 images in one cell

P

Pinnywallo

i have several images to place inside a <p></p> and i want the text in there
to just wrap nicely arund those images with little space from image edge to
text beginning...
 
M

Murray

You could accomplish what you want by something like this -

<p>Here is your text<span id="imageBag" style="float:right;"
margin-left:10px;"><img><img><img>...</span>and here is more much more
text.</p>

Of course the floating and the position of the span containing the images
would depend on your design needs.
 
Top