How to place image in document with text wrapped around it?

October 22, 2009 - 4:40 pm 1 Comment

How do I put an image in word into my document and have the text wrap around it?
In other words, when I place a pictire in a document, the space on the left and right is not typeable. I want to use this space.

Try this, using an inline style the float property:

<img src="Your image URL" style="float:left;"> Text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text.

This will look something like:
__________
|                | Text text text text text text
|   Image    | text text text text text text
|_________| text text text text text text
text text text text text text text text
text .

You can also try "float:right;"

One Response to “How to place image in document with text wrapped around it?”

  1. PB Says:

    Try this, using an inline style the float property:

    <img src="Your image URL" style="float:left;"> Text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text.

    This will look something like:
    __________
    |                | Text text text text text text
    |   Image    | text text text text text text
    |_________| text text text text text text
    text text text text text text text text
    text .

    You can also try "float:right;"
    References :

Leave a Reply