Workaround for Outlook 2007 for wrapping text around image with margin?
Posted
by DavidW
on Stack Overflow
See other posts from Stack Overflow
or by DavidW
Published on 2010-04-24T09:25:42Z
Indexed on
2010/04/24
9:33 UTC
Read the original article
Hit count: 279
As we all know, Outlook 2007 uses the Word 2007 rendering engine, causing endless grief when designing HTML email message. [Insert rant here] In particular, float, margin, and padding are - shall we say? - poorly supported.
To simulate float so that text wraps around an image, apparently we can simply use:
<img src="foo.png" align="right">
The issue is padding/margin. Without padding/margin, the wrapped text butts up against the image which looks goofy. One workaround is to edit the image and add transparent framing that simulates margin.
Does anyone know any other workarounds?
© Stack Overflow or respective owner