Remove blue hyperlink for phone number in email

*爱你&永不变心* 提交于 2019-12-12 03:32:45

问题


Similar to this question, How do I remove the blue styling of telephone numbers on iPhone/iOS?

I tried the suggestion using following code but it does not work:

[href^="tel"]{
    color:inherit;
}

My problem is I am copying a page from my website into an email (weekly newsletter), and gmail is converting it to a blue hyperlink. Even before adding a[href^="tel"], it did not show up as blue on my website. I'm thinking there is no fix since it is happening via google?


回答1:


if this is happening on gmail app, you can use an anchor tag and give it a color without the href

<a style="color:#000001; text-decoration:none;">iOS Fix</a>

if this is happening on the generic email clients for iOS you can use a class in the header and assign the class to the td

<style>
.appleLinkFix a{color:#000000; text-decoration:none;}
</style>

next you can add the class to the td which iOS will create the link by itself.

<td class="appleLinkFix">48 Pirrama Rd, Pyrmont NSW 2009</td>

Hope that helps answer your question.




回答2:


Add these styles

 color: inherit;
 text-decoration: none;

This is also very easy to Google.



来源:https://stackoverflow.com/questions/43303450/remove-blue-hyperlink-for-phone-number-in-email

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!