現時点ではiPhoneにしかアクセスできないため、これがiPhoneまたはすべてのスマートフォンで発生しているのかどうかはわかりませんが、すべてのリンクに下線が引かれています.
インライン スタイルとクラスの両方を使用してAND要素を追加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; }
下線を消すためにリンクに他に何を追加できるか考えられません