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

hood

我正在按钮中获取笔触,这是我正在编写的电子邮件。它仅出现在Outlook 2007、2010和2013中,我不知道如何删除它?有任何想法吗?

在此处输入图片说明

代码:

`<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>`
特德·果阿(Ted Goas)

是的,Windows Outlook 2007、2010、2013甚至2016年都对​​Box型号提供了不完整的支持。为了使外观漂亮,可单击的按钮正常工作(不幸的是)需要更多代码。

可能需要使用边框的粗细,内边距和&nbsp;s,但这应该可以解决您的问题,并在所有电子邮件客户端(包括Outlook)上为您提供美观的工作按钮:

<!-- 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 -->

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章