2

我想修复这个显示为蓝色的链接,而它应该是白色的。它发生在 2010 年展望中。

<span style="font-family: Arial; font-size: 10px;">
    You are subscribed with email address
    <font style="color: rgb(255,255,255);"><%user.Email%> </font>
    <a href="<%unsubscribe_link_text%>"
        style="color: rgb(174, 215, 51) ! important;">
        <font style="color: rgb(255,255,255);">Click here</font>
    </a> to unsubscribe.
</span> 

任何人都可以看到有什么问题并帮助我吗?:)

4

4 回答 4

3

尝试

<span style="font-family: Arial; font-size: 10px;">
You are subscribed with email address
<font style="color: rgb(255,255,255);"><%user.Email%> </font>
<a href="<%unsubscribe_link_text%>"
    style="color: #ffffff ! important;">
    <span style="color: #ffffff;">Click here</span>
</a> to unsubscribe.
</span> 

注意 a 内的跨度

于 2013-05-29T16:52:21.830 回答
2

我总是在样式表中针对 a 标签设置我的颜色,如下所示,并且在 Outlook 中应该可以正常工作。

a:link {
color: #666666;
}

a:visited {
color: #666666;
}

a:active {
color: #666666;
于 2012-05-15T13:41:48.890 回答
1

尝试将其更改 style="color: rgb(174, 215, 51) ! important;style="color: #ffffff";

于 2012-05-15T13:45:44.753 回答
0

尝试使用十六进制颜色而不是 RGB。

主指南: http: //www.campaignmonitor.com/css/

于 2012-05-15T13:41:09.437 回答