html - 将发送到 Gmail 客户端的电子邮件居中

标签 html gmail center

首先,请原谅我的英语和 html,我既不是英语也不是开发人员。我正在尝试为我的客户构建一个 HTML 邮件,他们希望通过在他们的 Gmail 客户端中复制/粘贴来发送它。 我已经从 mailchimp 下载了一个模板并对其进行了自定义。 HTML 看起来像这样:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">



    <title>*|MC:SUBJECT|*</title>

<style type="text/css">
    #outlook a{
        padding:0;
    }

    body{
        width:100% !important;
    }
    .ReadMsgBody{
        width:100%;
    }
    .ExternalClass{
        width:100%;
    }
    body{
        -webkit-text-size-adjust:none;
    }
    body{

        margin:0;
        padding:0;
    }
    img{
        border:0;
        height:auto;
        line-height:100%;
        outline:none;
        text-decoration:none;
    }
    table td{
        border-collapse:collapse;
    }
    #backgroundTable{
        height:100% !important;
        margin:0;
        padding:0;
        width:100% !important;
    }

    body,#backgroundTable{
        background-color:#FAFAFA;
    }

    #templateContainer{
        border:1px solid #DDDDDD;
    }
</style></head>
<body align="center">
    <center>
        <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="backgroundTable" align="center">
            <tr>
                <td align="center" valign="top">

                    <table border="0" cellpadding="10" cellspacing="0" width="600" id="templatePreheader">
                        <tr>
                            <td valign="top" class="preheaderContent">


                                <table border="0" cellpadding="10" cellspacing="0" width="100%">

                                </table>


                            </td>
                        </tr>
                    </table>

                    <table border="0" cellpadding="0" cellspacing="0" width="600" id="templateContainer">
                        <tr>
                            <td align="center" valign="top">

                                <table border="0" cellpadding="0" cellspacing="0" width="600" id="templateHeader">
                                    <tr>
                                        <td class="headerContent">

                                            </br>
                                            <img src="http://gallery.mailchimp.com/7243c1f17089e9e1ebba4fe7e/images/logo_couleur.png" style="max-width:600px;" id="headerImage campaign-icon" mc:label="header_image" mc:edit="header_image" mc:allowdesigner mc:allowtext>


                                        </td>
                                    </tr>
                                </table>

                            </td>
                        </tr>
                        <tr>
                            <td align="center" valign="top">

                                <table border="0" cellpadding="0" cellspacing="0" width="600" id="templateBody">
                                    <tr>
                                        <td valign="top">
                                            <table border="0" cellpadding="0" cellspacing="0" width="600">
                                                <tr>
                                                    <td valign="top" class="bodyContent">


                                                        <table border="0" cellpadding="20" cellspacing="0" width="100%">
                                                            <tr>
                                                                <td valign="top">
                                                                    <div mc:edit="std_content00">

内容等

当我复制/粘贴它并使用 gmail 发送它时,它在我的手机上正确呈现,但电子邮件在 gmail 客户端中不居中。

非常感谢任何帮助!

非常感谢。

最佳答案

最好的方法是嵌套表格。

有一个包装表,将其子表居中。

<table width="100%" cellpadding="0" cellspacing="0" border="0" align="center">
    <tr>
    <td align="center">

    <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
    <tr>
    <td>
        YOUR EMAIL CONTENT GOES HERE
    </td>
    </tr>
    </table>

    </td>
    </tr>
</table>

另外,gmail 是一个反复无常的邮件客户端。如果您有黑色链接,则需要使用#000001,否则 gmail 将使用默认的蓝色呈现这些链接。

确保所有图像都显示为无边框的 block 元素,否则它会在每个图像周围添加空白,甚至是间隔符。

如果您不希望默认情况下在 gmail 上可点击电话号码,则需要将它们包装到空的 anchor 标记中。

还有 html 电子邮件的一条黄金法则:内联样式。

希望对您有所帮助! :)

关于html - 将发送到 Gmail 客户端的电子邮件居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18058259/

相关文章:

windows - 如何在 Windows 上重新居中事件程序?

javascript - 我有一个分页问题,​​结合 nanoscroller

html - Css:带有固定标题和多个 tbody 的滚动表

date - 使用谷歌应用程序脚本阅读特定日期的电子邮件

javascript - Jquery - 在gmail签名前插入文本

iphone - 使用 CGRectZero 框架将 UIView 放置在 UITableView 的中间

html - CSS 类对 div 没有影响

javascript - 仅使用 Javascript 基于角色的登录

javascript - 如何检测是否通过 gmail 中的电子邮件单击了链接

html - 如何将此图像及其文本居中