【问题标题】:iOS email disable automatic link on namesiOS 电子邮件禁用名称上的自动链接
【发布时间】:2018-08-27 20:36:28
【问题描述】:

我刚刚注意到,在 iPhone Mail App 上使用最新的 iOS 软件 11.2.6,HTML 时事通讯中的一些歌手姓名会自动链接到 iTunes、Siri 和网络搜索结果的聚光灯覆盖。

是否可以通过标签或代码禁用此功能?

【问题讨论】:

    标签: ios email newsletter


    【解决方案1】:

    这是一个很好的描述,您可以采取哪些措施来防止在 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;
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2011-06-28
      • 2013-08-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-07-08
      • 1970-01-01
      • 2012-01-13
      相关资源
      最近更新 更多