文字修饰:无;在Outlook 2007中被忽略

时间:2011-07-18 18:39:18

标签: html css outlook html-email newsletter

在Outlook 2007中查看时,有没有办法让text-decoration:none;为简报中的链接工作?我已经在头部和身体中尝试了内联样式,直接应用于锚标签以及三者的组合。 Outlook 2007仍然显示所有链接的下划线,无论如何。有什么办法吗?感谢

3 个答案:

答案 0 :(得分:8)

这可以这样回避:

<a href="#"><strong style="font-weight:normal">text here</strong></a>

将文本放入强标记中,然后将其重置为正常字体粗细。

答案 1 :(得分:1)

尝试在<span>标记内绑定<a>。请使用以下代码段:

<a href="#" style="text-decoration:none;"><span style="text-decoration:none;">Click Here</span></a>

答案 2 :(得分:0)

我的Outlook 2007解决方案是:

<a href=""><span style="text-decoration:none">Text of the link</span></a>

但实际上,我用于我的案例的代码是:

<a href=""><strong><em><span style="text-decoration:none">Text of the link</span></em><strong></a>