Wrapping text around an image with indentation and justify

img {
    float: left;
    margin: 0 20px 20px 0;
}

p {
    text-align: justify;
    text-indent: 2em;
}

Here’s the fiddle: http://jsfiddle.net/9VkQR/

Leave a Comment