2013-06-24 61 views
0

我不知道這是iPhone還是所有智能手機,因爲我目前只能訪問iPhone,但它強制強調所有鏈接。在iPhone上通過電子郵件刪除帶下劃線的鏈接

我一直都使用在線風格和類,但它仍然顯示,下面是代碼添加text-decoration:none;spana元素:

<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; } 

我想不出還有什麼我可以添加到鏈接,使強調disapp耳

+0

可以清除設置緩存,並再次檢查? – Nitesh

+1

可能值得看看這個:https://litmus.com/help/email-clients/ipad/ios-blue-links –

+0

嘿@NickR ...我讀到了,它不適合我... Nathan我會嘗試緩存重置。 –

回答

1

如何失去內寬度,只是這樣做:

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

這一直工作得很好(至少在石蕊預覽反正)。

UPDATE:

試試這個:

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

參考here。我在想,因爲你的客戶端動態地放置了一個href。

+0

在附註上,如果你想刪除不需要的超鏈接的電話號碼,地址等,試試這個:http://stackoverflow.com/questions/17188499/awkward-hyperlink-generation-in-html-mails/17191937#17191937 – John

+0

不幸的是沒有...這是驅動我現在瘋狂... –

+0

@PeterFeatherstone我知道這是前一陣子,但只是更新了應該工作的答案。 – John

0

試試這個

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

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

不幸的是沒有...現在這讓我瘋狂...... –

1

爲我的作品的最好的事情是:

a[href^=tel] { color:#000000 !important; text-decoration:none !important; } 
相關問題