雅虎邮件布局中心按钮

时间:2017-12-13 08:39:27

标签: html css email html-email

我的一封邮件中有以下html:

<center>
  <table class="button">
    <tbody>
      <tr>
        <td>
          <a href="#">Set Now</a>
        </td>
      </tr>
    </tbody>
  </table>
</center>

问题是,在Gmail上,此Set Now按钮正确居中,但在雅虎上,它与左侧对齐。这是显示问题的图片:

enter image description here

4 个答案:

答案 0 :(得分:3)

请尝试以下代码:

SafeValue must use [property]=binding

答案 1 :(得分:2)

嵌套另一个<table>比使用<center&gt;更安全。这应该涵盖你的所有基础:

<td style="text-align: center;">

    <table class="button" align="center" style="margin: auto">
        <tbody>
            <tr>
                <td>
                    <a href="#">Set Now</a>
                </td>
            </tr>
        </tbody>
    </table>

</td>

答案 2 :(得分:1)

尝试

<table class="button" width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
  <tr>
    <td width="100%" align="center">
      <a href="#">Set Now</a>
    </td>
  </tr>
</tbody>

答案 3 :(得分:1)

将margin-left和margin-right设置为auto到父表。像这样,

<table class="button" style="margin-left:auto;margin-right:auto;">
<tbody>
  <tr>
    <td>
      <a href="#">Set Now</a>
    </td>
  </tr>
</tbody>

虽然我必须说只将样式的锚标记设置为按钮并不适用于所有电子邮件客户端,但您可能应该使用从此处生成的代码https://buttons.cm/