Outlook和Mail.Ru中未加载背景图像

时间:2017-08-23 10:40:02

标签: html outlook html-email

relative

以上版本适用于Gmail和Yahoo,但不适用于Outlook和Mail.Ru.有什么想法吗?

1 个答案:

答案 0 :(得分:2)

在Outlook中不支持

background,这就是它没有显示的原因。

您可以使用此 background image tool 生成将在Outlook中显示的背景图片。

在打开<body>标记后立即添加以下内容:

<div style="background-color:#7bceeb;">
  <!--[if gte mso 9]>
  <v:background xmlns:v="urn:schemas-microsoft-com:vml" fill="t">
    <v:fill type="tile" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQY2xFICSLTeJuWDALDsvc7YtIAdsNVpDWtRtOaGgPyCaPoGkjUvg" color="#7bceeb"/>
  </v:background>
  <![endif]-->
  <table height="100%" width="100%" cellpadding="0" cellspacing="0" border="0">
    <tr>
      <td valign="top" align="left" background="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQY2xFICSLTeJuWDALDsvc7YtIAdsNVpDWtRtOaGgPyCaPoGkjUvg">

并且在结束</body>标记之前:

     </td>
    </tr>
  </table>
</div>

我希望它能帮助你实现你想要的目标。