内联覆盖子链接样式属性

时间:2019-03-14 14:18:57

标签: html css amazon-web-services email verification

我正在制作要与AWS一起使用的电子邮件模板。在电子邮件的正文中,我们添加了一个{username}变量,该变量将替换为用户的实际用户名。在我们的例子中,用户名将是一个电子邮件地址,当Amazon工作时,它会被mailto:链接取代 例如:

<p>{username}</p>

将成为

<p><a href="mailto:example@domain.com">example@domain.com</a></p>

我希望能够更改链接的样式,但是无法访问<a>标签本身的格式。另外,由于电子邮件客户端无法广泛识别样式标签,因此我无法使用CSS,因此所有解决方案都必须是内联的。

我尝试过:

<p style="color: #fff !important"><a href="mailto:example@domain.com">example@domain.com</a></p>

那没有效果。

任何想法都非常欢迎!

Fiddle for the sake of testing.

0 个答案:

没有答案