右对齐Outlook电子邮件的图像

时间:2013-01-21 12:00:24

标签: html css

我使用float右对齐我的图像。

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

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

还有其他方法可以正确对齐吗?

1 个答案:

答案 0 :(得分:7)

表,嵌套表和更多表是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>