Gmail 背景颜色在 HTML 电子邮件中不起作用

问题描述 投票:0回答:1

2023 年 8 月 - 有没有人有一个简单的示例,可以在 Gmail 中使用整个正文的背景色创建 html 电子邮件?我到处都查过了,截至 2023 年 8 月,没有一个代码示例可以在 gmail 中运行。希望有人可以分享一段从 到 到 2023 年 8 月在 gmail 中运行的代码示例。我将永远感激不已。

我尝试了无数的选择,但毫无效果。

html email gmail background-color
1个回答
-2
投票

希望这对您有帮助:

<!-- width: calc((480px - 100%) * 480); -->
<table cellpadding="0" cellspacing="0" style="margin:auto; max-width:600px; width: 100%; font-size: 0; border-collapse: collapse;">
    <tr>
        <td>
            <h1 style="margin: 0; padding: 0; font-size: 30px; text-align:center; background: #e1c18b; color: #643c33; line-height: 2;">Selfie with me</h1>
        </td>
    </tr>
    <tr>
        <td>
            <img src="https://image.freepik.com/free-photo/camera-mirror_446-19322773.jpg" style="max-width: 100%; display: inline-block; vertical-align:top;" alt="Hero Image" />
        </td>
    </tr>
    <tr>
        <td style="background: #322421;">
            <table cellpadding="10" cellspacing="0" style="width: calc((480px - 100%) * 480); min-width: 50%; max-width: 100%;  font-family: arial; font-size: 14px; display: inline-block;">
                <tr>
                    <td>
                        <img src="https://image.freepik.com/free-photo/young-hipster-woman-making-photos-with-vintage-film-camera-at-summer-field-women-lifestyle-concept_1150-1054.jpg" alt="" style="width: 100%; display: inline-block; vertical-align: top;" />
                        <p style="padding: 10px 0; margin: 0; text-align: justify; color: #f6e2c0;">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nostrum praesentium ipsa vero consequuntur sunt porro vitae, a sed fuga debitis ratione, quas mollitia voluptate, ad voluptatum repellat voluptates! At, doloribus.</p>
                    </td>
                </tr>
            </table>
            <table cellpadding="10" cellspacing="0" style="width: calc((480px - 100%) * 480); min-width: 50%; max-width: 100%;  font-family: arial; font-size: 14px; display: inline-block;">
                <tr>
                    <td>
                        <img src="https://image.freepik.com/free-photo/young-hipster-woman-making-photos-with-vintage-film-camera-at-summer-field-women-lifestyle-concept_1150-1054.jpg" alt="" style="width: 100%; display: inline-block; vertical-align: top;">
                        <p style="padding: 10px 0; margin: 0; text-align: justify; color: #f6e2c0;">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nostrum praesentium ipsa vero consequuntur sunt porro vitae, a sed fuga debitis ratione, quas mollitia voluptate, ad voluptatum repellat voluptates! At, doloribus.</p>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
    <tr>
        <td style="margin: 0; padding: 10px; font-size: 20px; text-align:center; background: #564037; color: #ffffff;">
            Be a Selfie Expert
        </td>
    </tr>
</table>

© www.soinside.com 2019 - 2024. All rights reserved.