链接样式未出现在 Lotus Notes 8.5(电子邮件客户端)上
我正在制作 HTML 电子邮件并使用 Litmus 进行测试,但是 Lotus Notes 8.5 似乎没有显示任何链接样式。我正在使用相当老式的方法来确保它在较旧的邮件客户端中工作,但似乎没有任何效果。这些链接在其他所有客户端中都得到了设计,包括 Lotus Notes 7 和 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>
这可能只是应用程序的错误,但也可能是我的问题。我不太确定我的其他选择是什么。
I am making a HTML email and testing using Litmus, however Lotus Notes 8.5 does not appear to be displaying any link styles. I am using pretty old school methods to make sure it works in older mail clients, but nothing seems to work. The links are getting styled in every other client, including Lotus Notes 7 & 8.
Here is the code:
<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>
It could just be a bug with the app, however, it could also be me. I am not really sure what my other options are.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
标记放在
标记内。
由于
标签是内联元素,因此您可以将它们嵌套或环绕多个文本块,而不会影响布局。
Put the
<font>
tag inside the<a>
tag instead.Since
<font>
tags are inline elements, you can either nest them or wrap them around multiple blocks of text without affecting layout.在内联样式中,尝试添加“color: #00b4da; color: #00b4da !important;”
我似乎记得在 hotmail 中遇到过类似的事情并且需要这样做,但那是不久前的事了。希望有帮助。
in the inline style, try adding "color: #00b4da; color: #00b4da !important;"
I seem to remember coming across something similar in hotmail and needing to do this but that was a while ago. Hope that helps.