Search code examples
htmlcsshtml4email-templates

Email Template: text-decoration: none; NOT working


I am putting a link in email templates and I donot want to underline the link. In Outlook it is working fine but NOT working in Yahoo and Gmail. Sample code is as followed

<p> My paragraph
  <b>
    <a style="color: #9B0D25; cursor:pointer; text-decoration: none;" href="abc.com">abc.com</a>
  </b>
</p>

I tried text-decoration: none !important; but same result. Can any body help me?


Solution

  • Well ... I was forwarding email from outlook to yahoo. While sending mail from Outlook, it discards the property text-decoration: none;. So when I send email directly to Yahoo, it works !!