在我的电子邮件模板中,我有一个使用网络字体的导入:
@import url("http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300");
Outlook正在用锚点替换网址内容:
@import url("<a href="http: //fonts.googleapis.com/css?family=Open+Sans+Condensed:300" class="">http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300</a>");
我尝试了但是同样的结果,缺少了什么?
由于
答案 0 :(得分:1)
Outlook并不真正理解@import
或@font-face
,因此每当您在电子邮件中使用这些内容时,您需要在样式标记周围添加MSO条件。
<!--[if !mso]><!-->
<style type="text/css">
@import url("http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300");
</style>
<!--<![endif]-->
答案 1 :(得分:0)
Outlook使用Word作为电子邮件编辑器。您可以在MSDN的以下系列文章中阅读受支持和不受支持的HTML元素,属性和级联样式表属性: