转发电子邮件时如何删除超链接下划线

时间:2018-11-27 06:10:26

标签: html css email hyperlink html-email

因此,当我将电子邮件发送给自己进行测试时,我正在通过一个名为 Marketo 的程序创建电子邮件模板,但是当我转发同一封电子邮件时,收件人会收到带有< em>下划线。如何不使蓝线出现?这仅发生在 Outlooks 上。 enter image description here

3 个答案:

答案 0 :(得分:1)

我认为它显示在 Outlook 右侧。

好,一旦添加您的内容,请做一件事,以便我们无法尝试,请使用内联概念进行样式设置,例如:

<a href="#" style="text-decoration:none">link</a>

请注意,您在此处使用电子邮件模板中的内联样式。

答案 1 :(得分:1)

尝试使用此CSS属性:

a{ text-decoration: none; }

如果要在鼠标悬停时使用它:

a:hover{ text-decoration: underline; }

答案 2 :(得分:1)

我有一个想法,可以通过使用带有!important表达式的内联样式来解决您的问题。

您可以通过以下方式进行操作:

<a href="#" style="text-decoration:none!important;">Click here</a>

我希望这可以解决您的问题。