html电子邮件中的背景图片css – Gmail不支持

前端之家收集整理的这篇文章主要介绍了html电子邮件中的背景图片css – Gmail不支持前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将html body电子邮件发送给我的用户:background-image css
<div style='width:500px;height:1000px;background-color:black;background-image:url(http://upl0ad.org/images/mylogo.gif) repeat scroll left top;'>
    My Content
</div>

但是下面的链接说google不支持background-image css!
http://www.campaignmonitor.com/css/

我该怎么办?

解决方法

您是否尝试设置表的 background属性

这是在以下Mailchimp博客文章Background Images and CSS in HTML Email中详细介绍的推荐方法

示例(在Gmail中测试)

<table background="https://www.google.com/intl/en_com/images/srpr/logo3w.png" width="275" height="95">
        <tr>
            <td>
                Email Content...
            </td>
        </tr>
    </table>
原文链接:https://www.f2er.com/html/233299.html

猜你在找的HTML相关文章