3

我使用浮动右对齐我的图像。

<div align="left">
   Insight
   <img height="20" style="float:right;" src="https://mydomain/myimage.jpeg">
</div>

我将此 html 作为电子邮件发送。但是,在 Microsoft Outlook 中,图像没有正确对齐,因为我认为 ms Outlook 不支持浮动。

有没有其他方法可以正确对齐它?

4

1 回答 1

8

表格、嵌套表格和更多表格是 Outlook 的关键。

<table width="100%" cellspacing="0" cellpadding="0" border="0">
    <tr>
        <td align="right" valign="top">
            <img height="20" src="https://mydomain/myimage.jpeg">
        </td>
    </tr>
</table>
于 2013-01-21T13:07:53.413 回答