gmail html电子邮件背景颜色

前端之家收集整理的这篇文章主要介绍了gmail html电子邮件背景颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法把颜色作为 HTML电子邮件的背景为gmail?

我用这个来使身体背景灰色,但它没有工作

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#e2e3e7" style="font-family:Arial,Helvetica,sans-serif;">

解决方法

将您的电子邮件包装在一个100%宽度和高度的单元格表格中,并设置该单元格的背景颜色.
<table>
    <tr>
        <td width='100%' height='100%' bgcolor='#e2e3e7'>

            <!-- "Content" table goes here -->
            <table width='600' align='center' bgcolor='#ffffff'>

            </table>

        </td>
    </tr>
</table>
原文链接:https://www.f2er.com/html/224202.html

猜你在找的HTML相关文章