【发布时间】:2017-08-08 06:56:37
【问题描述】:
有没有什么方法可以设置链接text-decoration: none 因为下划线?我在stackoverflow上寻找,但没有任何效果。首先没有下划线,但是当我发送电子邮件时,下划线是可见的。
<a href="www.google.com">Link</a>
<a href="www.google.com" style="text-decoration: none;">Link</a>
<a href="www.google.com" style="text-decoration: none !important;">Link</a>
<a href="www.google.com" style="text-decoration: none !important; text-decoration: none">Link</a>
<a href="www.google.com" style="text-decoration-color: transparent">Link</a>
<a href="www.google.com" style="text-decoration: none;">
<span style="text-decoration: none">Link</span>
</a>
【问题讨论】: