在outlook黑暗模式下,<a>
标签内的文本出现奇怪的背景颜色(仅当锚标记有href链接到它时),当我已经。我试着将background-color设置为a:link和其他各种方法,但它似乎没有固定。你知道吗?
下面的代码看起来很好,几乎所有的应用程序,但在某些Outlook暗模式下,突出显示的背景颜色出现。
<div style="margin-top: 10px; "><!--[if mso]>
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://" style="height:48px;v-text-anchor:middle;width:155px;" arcsize="17%" stroke="f" fillcolor="#4e40ef">
<w:anchorlock/>
<center>
<![endif]-->
<a href="http://google.com"
style="background-color:orange; color:white; text-align:center;text-decoration:none;width:155px;">Click here</a>
<!--[if mso]>
</center>
</v:roundrect>
<![endif]--></div>
您是否尝试将<div>
上的背景颜色设置为与其中有问题的<a>
标签相同的背景颜色?这可能会消除颜色的差距。