我刚注意到,使用iPhone Mail App上的最新iOS软件11.2.6,HTML时事通讯中的一些歌手名称会自动链接到与iTunes,Siri和网络搜索结果的聚光灯叠加。
是否可以使用标记或某些代码禁用此功能?
答案 0 :(得分:0)
这是一个很好的说明,您可以采取什么措施来防止在iOS上自动生成链接...
https://litmus.com/blog/update-banning-blue-links-on-ios-devices
解决方案可能是文字中的第4点,该属性涉及插入原始电子邮件代码中的属性。
<a href="#" x-apple-data-detectors="true">
您可以通过添加自己的样式来禁用外观变化。
a[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
}