我使用float右对齐我的图像。
<div align="left">
Insight
<img height="20" style="float:right;" src="https://mydomain/myimage.jpeg">
</div>
我将此html作为电子邮件发送。但是,在microsoft outlook中,图像没有正确对齐,因为我认为ms outtlook不支持float。
还有其他方法可以正确对齐吗?
答案 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>