outlook 2010 电子邮件背景颜色 html/css 属性 不起作用

outlook 2010 email background color html/css property does not work

我已经在电子邮件模板中为 header 尝试了以下背景颜色代码。该代码适用于其他电子邮件客户端,但在 Outlook 2010 中它根本不会显示背景颜色。我尝试添加和删除 'px' 但没有任何区别。我需要对其进行哪些更改才能支持 Outlook 2010?

<div style="background-color: #xxxxx;" width="600" height="70"> </div>

您可以将其替换为下面的代码,并在 table 标签或 td 标签中使用 bgcolor 或向 table 标签添加样式并包含背景样式。

我还添加了 Screenshot 显示其在 Outlook 2010 中的工作

<table width="600" border="0" cellpadding="0" cellspacing="0" bgcolor="red" style="background: red;">
  <tr>
    <td height="70" bgcolor="red"></td>
  </tr>
</table>