我意识到这已被问过很多次,所以如果我重复自己但是已经遵循了很多其他的技巧,我会在Gmail中获得一些奇怪的行为.
如果我在浏览器中打开下面的代码,复制它,然后将其粘贴到Gmail sig(通过设置),文本会考虑文本修饰属性(我正在使用跨度并!important按照其他帖子的建议).
我现在可以创建/发送电子邮件,并且样式受到尊重.
但是,如果我退出Gmail然后再次登录,text-decoration:none则会突然忽略样式."修复"的唯一方法是重新复制/粘贴信号(通过"设置").
我想知道Gmail中的某些内容是否已经发生了变化,因为我已经使用了这个sig好一年左右而且最近我才注意到这种行为.
有没有人经历过这个(或者我的代码可以看到什么问题)?
<body>
<table width="98%" border="0" cellspacing="0" cellpadding="0" style="font-family:'Lucida Grande','Lucida Sans','Lucida Sans
Unicode';font-size:12px;margin:0px">
<tr>
<td>
<a href="http://maps.google.com?q=Mainframe North" target="_blank" style="text-decoration:none !important;color:rgb(180,180,180);">
<span style="text-decoration:none !important;color:rgb(180,180,180);">
82 Silk Street<br>Manchester M4 6BJ
</span>
</a>
</td>
</tr>
</table>
</body>Run Code Online (Sandbox Code Playgroud)
根据以下评论更新了代码:
<table width="98%" border="0" cellspacing="0" cellpadding="0" style="font-family:'Arial';font-size:12px;margin:0px;color:#B4B4B4">
<tr>
<td>
<a href="http://maps.google.com?q=Mainframe North" target="_blank" style="text-decoration:none">
<span style="text-decoration:none;color:#B4B4B4">
82 Silk Street<br>Manchester M4 6BJ
</span>
</a>
</td>
</tr>
</table>Run Code Online (Sandbox Code Playgroud)