Outlook 2007,2010,2013和2016中的按钮

时间:2016-10-25 15:48:29

标签: html outlook html-email outlook-2010 outlook-2007

我正在按钮中输入我正在编码的电子邮件。它只出现在Outlook 2007,2010和2013中,我无法弄清楚如何删除它?有任何想法吗?

enter image description here

代码:

`<a href="http://buttons.cm" style="color: #ffffff; background: #a52023; 
 border: 1px solid #a52023;  display: inline-block; font-family: tahoma;
 font-weight: 900; letter-spacing: 2px; font-size: 16px; border-radius: 80px;
 line-height: 60px; text-align: center; text-decoration: none; width: 275px;
 -webkit-text-size-adjust: none; mso-hide: all;">GET FREE WORKWEAR</a>`

2 个答案:

答案 0 :(得分:3)

是的,Windows Outlook 2007,2010,2013甚至2016都对盒子模型提供了不稳定的支持。为了得到一个漂亮的,可点击的按钮工作(不幸的是)需要更多的代码。

可能需要使用边框粗细,填充和&nbsp;的数量,但这应该可以解决您的问题,并为所有电子邮件客户端(包括Outlook)提供一个看起来像样的工作按钮:< / p>

<!-- Button : Begin -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" style="margin: auto;">
    <tr>
        <td style="border-radius: 3px; background: #a52023; text-align: center;">
            <a href="http://www.google.com" style="background: #a52023; border: 15px solid #a52023; font-family: tahoma; font-weight: 900; letter-spacing: 2px; font-size: 16px; mso-height-rule: exactly; line-height: 60px; text-align: center; text-decoration: none; display: block; border-radius: 3px; font-weight: 900; text-transform: uppercase;">
                &nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#ffffff">Get Free Workwear</span>&nbsp;&nbsp;&nbsp;&nbsp;
            </a>
        </td>
    </tr>
</table>
<!-- Button : END -->

答案 1 :(得分:0)

在Outlook中有效(来源:https://gist.github.com/benknight/3316487):

<span style="display: inline-block; text-align: center; background-color: #d21d00; border: 1px solid #5d150e; color: white;">
  <span style="display: inline-block; background-color: #d21d00; color: white; border-width: 1px 0 0 1px; border-color: #f3948a; border-style: solid;">
    <a style="display: inline-block; text-decoration: none; font-weight: bold; color: white; border-color: #d21d00; border-width: 5px 10px; border-style: solid; white-space: nowrap;" href="https://stackoverflow.com">Go to Stackoverflow</a>
  </span>
</span>