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

时间:2018-06-07 16:20:29

标签: html css email background-color outlook-2010

我在电子邮件模板中尝试使用以下代码作为标题的背景颜色。该代码适用于其他电子邮件客户端,但在Outlook 2010中,它根本不会显示背景颜色。我尝试过添加和删除“px'但它没有任何区别。我需要做些什么改变来支持Outlook 2010?

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

1 个答案:

答案 0 :(得分:2)

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

我还添加了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>