0

我正在处理 eblast,无法让我的 CTA 按钮在 Outlook 2016 上正确呈现。

Campaign Monitor 中的防弹按钮在 Outlook 2016 上不起作用,因此我决定有条件地为 Outlook 2016 插入一个图像按钮。

问题是图像没有显示圆角。我不知道为什么,因为当我在电子邮件的其他地方插入图像时,圆角显示没有问题。请指教。

<!--[if mso 16]>
<a href="www.google.com" style="background-
color:#021e2f;border:1px solid #1e3650;color:#ffffff;display:inline-
block;font-family:sans-serif;font-size:16px;font-weight:bold;line-
height:40px;text-align:center;text-decoration:none;width:130px;-webkit-text-
size-adjust:none;"><img width="130" src="https://mlsvc01-
prod.s3.amazonaws.com/6f8ceec6001/0d1f837c-7eb0-4f1c-b8dd-560515a505bf.png?ver=1477579088000" alt="Learn more" style="font-family:sans-serif;font-
size:16px;font-weight:bold;line-height:40px;text-
align:center;width:130px;height: auto;" /></a></div>

<![endif]-->
4

1 回答 1

2

如果您将图像用作按钮,则不需要包含在封闭的<a href>. 如果它的角落是透明的,那么事情就像border并且background-color可能会影响它。<img>

尝试:

<a href="www.google.com" style="display:inline-block;line-height:40px;text-align:center;width:130px;">
    <img width="130" src="https://mlsvc01-prod.s3.amazonaws.com/6f8ceec6001/0d1f837c-7eb0-4f1c-b8dd-560515a505bf.png?ver=1477579088000" alt="Learn more" style="font-family:sans-serif;font-size:16px;font-weight:bold;line-height:40px;text-align:center;width:130px;height: auto;" />
</a>
于 2016-10-27T15:25:54.290 回答