我不知道这是否仅发生在 iPhone 或所有智能手机上,因为我目前只能使用 iPhone,但它强制在所有链接上加下划线。
我已经使用内联样式和类添加text-decoration:none;
到span
AND元素,但它仍然显示,下面是代码: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; }
我想不出还有什么可以添加到链接中以使下划线消失