Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用浮动右对齐我的图像。
<div align="left"> Insight <img height="20" style="float:right;" src="https://mydomain/myimage.jpeg"> </div>
我将此 html 作为电子邮件发送。但是,在 Microsoft Outlook 中,图像没有正确对齐,因为我认为 ms Outlook 不支持浮动。
有没有其他方法可以正确对齐它?
表格、嵌套表格和更多表格是 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>