Outlook 2010在签名中添加了链接下划线

时间:2014-06-25 16:41:25

标签: html css email outlook

当我发送电子邮件并包含签名时,Outlook会在签名中的每个链接下添加蓝色下划线。有什么方法吗?

我已使用Outlook 2010签名尝试了所有内容。我使用text-decoration: none;编写了简单的HTML代码,甚至尝试添加!important

1 个答案:

答案 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>