在背景颜色的背景图象在电子邮件

时间:2015-04-02 10:14:21

标签: html css email background

使用包含图像作为背景的表格创建电子邮件模板,我想知道在没有显示图像时是否可以获得替代背景颜色(默认情况下,在大多数电子邮件平台上)。

我尝试了以下内容:

<table border="0" cellpadding="20" cellspacing="0" width="100%" style="background: #005a84 url(http://xxxx/email-bckg.jpg); background-repeat: no-repeat">

但是在Outlook上测试,即使我点击&#34;加载图片&#34;然后,背景颜色属性覆盖背景图像。

有什么想法吗?

谢谢!

2 个答案:

答案 0 :(得分:1)

Outlook 2003/2007(桌面版)无法显示background-images 请改用http://backgrounds.cm/

答案 1 :(得分:0)

检查你的风格:

style="
background: url(http://xxxx/email-bckg.jpg); 
background-repeat: no-repeat; 
background-color: #005a84;"

您只需要从&#34;背景&#34;中删除颜色代码。并添加背景颜色。

这样你就可以设置背景颜色,但是如果可以显示图像,它将覆盖背景颜色。