如何删除电子邮件签名中的超链接下划线

时间:2017-04-21 10:54:19

标签: html email gmail signature sign

我创建了电子邮件签名但超链接可见如何删除电子邮件签名中的超链接下划线

代码文件链接:http://karyaspace.com/email-signatures/

enter image description here

3 个答案:

答案 0 :(得分:1)

这是Gmail的行为。它会将签名中的任何网站地址转换为自动转换为超链接。

目前Gmail中没有可以关闭这些超链接的设置。但还有另一种方式。

单击“撰写邮件”按钮将打开一个填充了签名的新撰写邮件窗口。现在单击消息文本区域上方的“疼痛文本”选项以删除超链接。

关注this链接。可能对你有帮助。

答案 1 :(得分:0)

还有一件事,它非常愚蠢但仍然,你可以拍下没有下划线的链接,然后只是从这些图片制作一个超链接。或者你可以比我更聪明,只要问聪明人如何做出好signature,你的选择)

答案 2 :(得分:0)

您需要在html中关闭img标记与周围锚标记之间的所有间隙。

此代码将显示少许下划线。

<a href="https://www.example.com" style="border-width:0px; border:0px; text-decoration: none;">
                        <img width="25" height="25" style="vertical-align: middle; border: none; width: 25px; max-width: 25px !important; height: 25px; max-height: 25px !important;"
                            src="http://example.com/test.png">
                    </a>

此代码赢了

<a href="https://www.example.com" style="border-width:0px; border:0px; text-decoration: none;"><img width="25" height="25" style="vertical-align: middle; border: none; width: 25px; max-width: 25px !important; height: 25px; max-height: 25px !important;" src="http://example.com/test.png"></a>