为AOL Mail设置Mailto链接样式

时间:2016-09-19 15:59:58

标签: html css email

最近,AOL Mail开始忽略我用来覆盖内置链接样式的编码。奇怪的是,我的编码仍适用于常规链接,但不适用于mailto链接。以下是针对AOL,Gmail,Outlook以及其他希望为链接插入自己样式的邮件服务的解决方法:

<a href="mailto:fake@fakeURL" style="color:#428BCA;text-decoration: none !important;text-decoration: none;border-bottom:none !important;"><strong style="font-weight:normal;">fake@fakeURL.com</strong></a>

有没有人用AOL中的mailto链接解决这个新问题?

1 个答案:

答案 0 :(得分:0)

尝试添加一个类,例如class =&#34; mail_link&#34;到你的标签,然后在里面添加一个定位标签的样式:

.mail_link {
    color: #428BCA !important;
    text-decoration: none !important;
}