2017-08-08 1 views
0

Y a-t-il un moyen de définir le lien text-decoration: none en raison du soulignement? Je cherchais sur stackoverflow, mais rien ne marche. Il n'y a pas de soulignement en premier, mais quand j'envoie un email, le soulignement est visible.La signature Gmail supprime la décoration de texte: aucune des liens

<a href="www.google.com">Link</a> 

<a href="www.google.com" style="text-decoration: none;">Link</a> 

<a href="www.google.com" style="text-decoration: none !important;">Link</a> 

<a href="www.google.com" style="text-decoration: none !important; text-decoration: none">Link</a> 

<a href="www.google.com" style="text-decoration-color: transparent">Link</a> 

<a href="www.google.com" style="text-decoration: none;"> 
    <span style="text-decoration: none">Link</span> 
</a> 

Répondre

-1

Essayez d'ajouter importante:

HTML

<a src = "www.google.com" id = "link"/> 

CSS

#link { 
    text-decoration : none !important ; 
} 
+0

Malheureusement, Gmail supprime également tous les id CSS et classes. Mais un {text-decoration: none! Important; } ne fonctionne pas non plus. – Vesmy