2013-01-21 38 views
1

我右對齊我的圖像使用浮動。右對齊圖像的Outlook電子郵件

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

我將此html作爲電子郵件發送。但是,在Microsoft Outlook中圖像不對齊,因爲我認爲ms outtlook不支持浮動。

有沒有其他方法可以對齊它?

+1

表是你的答案:) – Morpheus

+0

是我的答案是你要找的東西? –

+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> 
+0

此外,我們使用帶有透明gif和固定寬度和高度填充的td,對於所有文本樣式,都使用td's和'「。 –