2015-06-30 55 views
0

我正在编写HTML电子邮件,并试图让背景横幅图像在Outlook 2010,11,13,16中呈现出某种程度的正确性。使用此目前 - http://backgrounds.cm/。 我的问题是,Outlook 2010和2013似乎放大了背景图片。电子邮件 - 防弹背景图像

我的代码:

<td background="https://someKitten.jpg" width="600" height="185" valign="top"> 

         <!--[if gte mso 9]> 
         <v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:600px;height:185px;"> 
         <v:fill type="tile" src="https://someKitten.jpg" /> 
         <v:textbox inset="0,0,0,0"> 
         <![endif]--> 
         <div> 
         </div> 
         <!--[if gte mso 9]> 
         </v:textbox> 
         </v:rect> 
         <![endif]--> 
       </td> 

这似乎是一个已知的问题,但我没有遇到任何修复过来。 https://www.campaignmonitor.com/forums/topic/7953/bulletproof-background-images-enlarging-in-outlook/

回答

0

...固定。

为别人这个问题挣扎,设置填充类型为“框架”

<v:fill type="frame" src="https://someKitten.jpg" />