当我发送电子邮件并包含签名时,Outlook会在签名中的每个链接下添加蓝色下划线。有什么方法吗?
我已使用Outlook 2010签名尝试了所有内容。我使用text-decoration: none;
编写了简单的HTML代码,甚至尝试添加!important
。
答案 0 :(得分:0)
将text-decoration: none !important;
提供给a
代码。
或者你可以这样做。
<style type="text/css">
a {text-decoration: none !important; color: #000; cursor: text;}
</style>
或强>
<table>
<tbody>
<tr>
<td>
<a href="mylink" style="text-decoration:none !important; color: #000000">Your Link</a></span>
</td>
</tr>
</tbody>
</table>