在没有图像的 Outlook 中创建圆角
您可以使用 CSS 属性 border-radius 在许多电子邮件客户端中实现圆角。但是,Outlook 本身并不支持此属性。虽然存在涉及图像的替代方法,但它们可能具有限制性。 Outlook 中是否有一种不使用图像即可实现圆角的技术?
Outlook 2010 提供了使用条件注释和 VML(矢量标记语言)的解决方案。此代码可以生成圆角按钮:
<code class="html"><div> <!--[if mso]> <v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://www.EXAMPLE.com/" style="height:40px;v-text-anchor:middle;width:300px;" arcsize="10%" stroke="f" fillcolor="#d62828"> <w:anchorlock/> <center style="color:#ffffff;font-family:sans-serif;font-size:16px;font-weight:bold;"> Button Text Here! </center> </v:roundrect> <![endif]--> <!--[if !mso]><!--> <table cellspacing="0" cellpadding="0"> <tr> <td align="center" width="300" height="40" bgcolor="#d62828" style="-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; color: #ffffff; display: block;"> <a href="http://www.EXAMPLE.com/" style="color: #ffffff; font-size:16px; font-weight: bold; font-family:sans-serif; text-decoration: none; line-height:40px; width:100%; display:inline-block"> Button Text Here! </a> </td> </tr> </table> <!--<![endif]--> </div></code>
Outlook 2010 和主要浏览器都支持此方法。它不适用于 OWA、Outlook.com 或移动浏览器。
以上是如何在不使用图像的情况下在 Outlook 电子邮件中创建圆角?的详细内容。更多信息请关注PHP中文网其他相关文章!