小编典典

html电子邮件中的背景图片CSS-Gmail不支持

css

我想向我的用户发送如下带有HTML正文电子邮件的背景图片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>

但正如下面的链接所说,谷歌不支持背景图像的CSS!

我该怎么办?


阅读 523

收藏
2020-05-16

共1个答案

小编典典

您是否尝试过设置表格的背景属性?

以下Mailchimp博客文章中详细介绍了推荐的方法:HTMLEmail中的背景图片和CSS。

示例 (在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>
2020-05-16