电子邮件签名中的垂直线在Chrome中有一个边缘

时间:2016-03-18 16:40:25

标签: html email

如绿色圆圈所示。关于为什么会发生这种情况的任何想法?

这是我的代码:

<table style="margin-top:40px;margin-left:0px;margin-bottom:30px;width:95%" border="0">
	<tr height="45">
		<td width="105">
			<span style="font-family:'Calibri',helvetica,San-Serif;font-size:15px;color:#333;line-height:15px"><b style="font-weight: bold;">CONCUR </b><b style="color:#DE2C38; font-weight:normal;">LABS</b>
		</td>
		<td>
		<div style="height:45px; width:1px; background:#888; margin-right: 2px;"> </div>
		</td>
		<td>
			<span style="font-family:'Calibri',helvetica,San-Serif;font-size:12px;color:#333;line-height:15px"><b style="font-weight: bold;">Alicia</b>, Sr User Experience Designer<br />
			<span style="font-family:'Calibri',helvetica,San-Serif;font-size:12px;color:#333;line-height:22px"><a href="tel:123.456.7891" title:"Call me" style="color:#777">123.456.7891</a></b>&nbsp;&nbsp;<b style="color:E9212D;">|</b>&nbsp;&nbsp;<a href="mailto:alicia@website.com" title="email me" style="color:#777">alicia@website.com</a></span>
		</td>
	</tr>
</table>

1 个答案:

答案 0 :(得分:0)

你的html有一些杂乱的标签,第一个<table style="margin-top:40px;margin-left:0px;margin-bottom:30px;width:95%" border="0"> <tr height="45"> <td width="105"> <span style="font-family:'Calibri',helvetica,San-Serif;font-size:15px;color:#333;line-height:15px"><b style="font-weight: bold;">CONCUR </b><b style="color:#DE2C38; font-weight:normal;">LABS</b></span> </td> <td> <div style="height:45px; width:1px; background:#888; margin-right: 2px;"> </div> </td> <td> <span style="font-family:'Calibri',helvetica,San-Serif;font-size:12px;color:#333;line-height:15px"><b style="font-weight: bold;">Alicia</b>, Sr User Experience Designer<br /> <span style="font-family:'Calibri',helvetica,San-Serif;font-size:12px;color:#333;line-height:22px"><a href="tel:123.456.7891" title="Call me" style="color:#777">123.456.7891</a>&nbsp;&nbsp;<b style="color:E9212D;">|</b>&nbsp;&nbsp;<a href="mailto:alicia@website.com" title="email me" style="color:#777">alicia@website.com</a></span> </td> </tr> </table> 没有被正确关闭。

</b>

有一个未打开的title:"Call me"标签和一个可怕的{{1}}我也纠正了。 :P