gpt4 book ai didi

html - 在 iPhone 上删除电子邮件中带下划线的链接

转载 作者:太空宇宙 更新时间:2023-11-03 23:59:39 27 4
gpt4 key购买 nike

我不知道这是否只发生在 iPhone 或所有智能手机上,因为我目前只能访问 iPhone,但它会强制在所有链接上加下划线。

我已经添加了 text-decoration:none;span a元素都使用内联样式和类但它仍然显示,下面是代码:

<a href="http://www.example.com" style="text-decoration: none;" class="appleLinks">

<span style="text-decoration:none;" class="appleLinks" >

Example Link

</span>

</a>

我的 <head> 中也有以下内容内节<style>标签:

a               { text-decoration: none; }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }
a:focus { text-decoration: none; }

.appleLinks { text-decoration: none; }

我想不出我还能在链接中添加什么来使下划线消失

最佳答案

如何失去内部跨度并只做:

<a href="" style="color: #000001; font-weight: bold; text-decoration: none;">Link</a> 

这总是可以正常工作(至少在 Litmus 预览版上是这样)。

更新:

试试这个:

.appleLinks a  { text-decoration: none !important; }

引用 here .我认为 a 是因为您的客户动态地将 href 放在那里。

关于html - 在 iPhone 上删除电子邮件中带下划线的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17274687/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com