繁体   English   中英

从Outlook中删除下划线gmail超链接

[英]Remove underline gmail hyperlink from outlook

当我将网页内容复制到Outlook并发送到gmail时,是否可以删除gmail中的蓝色超链接下划线?

当我将文本粘贴到Outlook新邮件窗口时,有任何带下划线的链接,但是当我打开gmail发送的信件时,我看到了难看的蓝色下划线。 比行仅在桌面gmail中显示,在移动gmail应用中没有下划线。

我尝试了所有可以在Google中找到的内容。

这是我的代码:

<style>
  a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
  }
</style>

<table border="0" cellpadding="0" cellspacing="0">
  <tbody>
    <tr>
      <td align="center" height="69" style="height:69px;" valign="middle" width="600"><a href="mylink" target="_blank" style="color:#040400;text-decoration: none;"><h2 style="text-align: center;font-family: Arial, sans-serif;">Title</h2></a></td>
    </tr>
  </tbody>
</table>

h2 text-decoration: none;上添加此样式text-decoration: none;

<table border="0" cellpadding="0" cellspacing="0">
  <tbody>
    <tr>
      <td align="center" height="69" style="height:69px;" valign="middle" width="600"><a href="mylink" target="_blank" style="color:#040400;text-decoration: none;"><h2 style="text-align: center;font-family: Arial, sans-serif; text-decoration: none;">Title</h2></a></td>
    </tr>
  </tbody>
</table>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM