简体   繁体   English

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

[英]Remove underline gmail hyperlink from outlook

Is it possible to remove blue hyperlink underline in gmail when I copy web page content to outlook and send to gmail? 当我将网页内容复制到Outlook并发送到gmail时,是否可以删除gmail中的蓝色超链接下划线?

There is any underlined link when I paste text to outlook new mail window, but when i open sent letter from gmail i see that ugly blue underline. 当我将文本粘贴到Outlook新邮件窗口时,有任何带下划线的链接,但是当我打开gmail发送的信件时,我看到了难看的蓝色下划线。 Than line appears only in desktop gmail, in mobile gmail app there is no underline. 比行仅在桌面gmail中显示,在移动gmail应用中没有下划线。

I tried everything that I can find in google. 我尝试了所有可以在Google中找到的内容。

This is my code: 这是我的代码:

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

Add This style on h2 text-decoration: none; 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