Indent text and align text

I want to do something like this

The problem is that I need p indent and justify as alignment.

I could float the image to the left, and then set the display of h3 and p to inline, but then I can not set the indentation and, more importantly, the text justifies itself.

+18
html css wrap
Mar 04 '13 at 19:23
source share
1 answer
 img { float: left; margin: 0 20px 20px 0; } p { text-align: justify; text-indent: 2em; } 

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

+34
Mar 04 '13 at 19:27
source share



All Articles