链接样式没有出现在Lotus Notes 8.5(电子邮件客户端)上



我正在制作HTML电子邮件并使用Litmus进行测试,但是Lotus Notes 8.5似乎没有显示任何链接样式。我使用了相当老派的方法来确保它在旧的邮件客户端中工作,但似乎什么都不起作用。这些链接在其他所有客户端(包括Lotus Notes 7)中都得到了样式化。8 .

代码如下:

<font face="Arial" size="2" color="#00b4da" style="font-size: 16px; line-height: 22px; color: #00b4da; text-decoration: none;">
    <a href="http://www.link.com/" style="font-size: 16px; line-height: 22px; color: #00b4da; text-decoration: none;">
        www.link.com  
    </a>
</font>

这可能只是应用程序的错误,但是,也可能是我的问题。我不确定还有什么其他选择

<font>标签放到<a>标签中。

<a href="http://www.link.com/" style="font-size: 16px; line-height: 22px; color: #00b4da; text-decoration: none;">
    <font face="Arial" size="2" color="#00b4da" style="font-size: 16px; line-height: 22px; color: #00b4da; text-decoration: none;">
        www.link.com  
    </font>
</a>

由于<font>标签是内联元素,您可以嵌套它们或将它们围绕多个文本块而不影响布局。

在内联样式中尝试添加"color: #00b4da;颜色:#00b4da !"

我似乎记得在hotmail中遇到类似的东西,需要这样做,但那是一段时间以前的事情了。

相关内容

最新更新