0

現時点では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; }

下線を消すためにリンクに他に何を追加できるか考えられません

4

4 に答える 4

2

内側のスパンを失い、次のようにするのはどうですか:

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

これは常に正常に動作します (少なくとも Litmus プレビューでは)。

アップデート:

これを試して:

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

ここを参照してください。あなたのクライアントによって動的にそこに置かれたhrefがあるので、私はaがそうであると考えています。

于 2013-06-24T12:54:00.970 に答える
1

私にとって最も効果的なのは次のとおりです。

a[href^=tel] { color:#000000 !important; text-decoration:none !important; }
于 2014-09-29T19:25:03.550 に答える