Tagged: text
Hi everyone.
Is there a tool or way to insert images into text so that it flows around it?
Hey icarogioiosi,
Thank you for the inquiry.
You have to set the float property of the image to right or left. This will allow the surrounding text to flow around the image.
Example:
HTML:
<img src="test.jpg" class="av-float-right" />Long text here..
CSS:
.av-float-right {
float: right;
margin: 10px;
max-width: 242px;
}
Let us know the result.
Best regards,
Ismael