I have some C# code that inserts an email address into a placeholder in a html string (placeholder is in the format %Email%) and then sends this html as an email which is then opened using Outlook.
Basically I want the hyperlink colour to be white rather than the default blue.
I have tried to use CSS but not does not seem to work with the output in Outlook. I have 开发者_开发百科also tried hard-coding the colour into html but still without luck. It seems that the default hyperlink colour is overriding the colour I hard-coded.
Any help with this would be greatly appreciated.
Thank you.
It's probably too late. Try putting the style on a span tag inside the a tag.
<a href="#" style="color: #fff;"><span style="color: #fff;">Link</span></a>
Have you tried inline styles?
<a href="#" style="color: #fff;">Link</a>
精彩评论