我的任务是实施我们公司的新电子邮件HTML签名布局。但是,我很难从移动设备上的gmail中 而不是 获取我的HTML签名(源自Microsoft Outlook)。我使用了严格的内联样式标签,大多数元素已经包含 white-space:nowrap ,所以我不确定为什么它继续包装更长的元素(在移动设备上的gmail中),但没有其他地方。
我错过了什么吗?是否有一个特定的内联样式gmail用来防止包装?或者是否存在强制在本机gmail安卓应用程序上的物理宽度限制?
非常感谢任何意见或建议!
(我通过将以下.htm文件复制到%appdata%/ microsoft / signature中来实现此签名)
下面是我的html代码,其代码大小相似:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body link="#f68f1e" vlink="#f68f1e" alink="#f68f1e">
<br />
<table cellpadding="0" cellspacing="0" border="0" style="padding-left: 0px; padding-right: 0px; padding-top: 0px; padding-bottom: 0px; white-space: nowrap;">
<tr>
<td align="left" valign="top" colspan="2" style="padding-left: 0px; padding-right: 0px; padding-top: 0px; padding-bottom: 0px; white-space: nowrap;">
<font style="line-height: 1.25; font-family: Arial; font-size: 14px; font-style: italic; white-space: nowrap;"><b>John Smith Jr</b></font><br />
<font style="line-height: 1.25; font-family: Arial; font-size: 12px; font-style: italic; white-space: nowrap;">Very Long Job Title That Is Very Descriptive With Extra Details</font><br />
<font style="line-height: 1.25; font-family: Arial; font-size: 12px; font-style: italic; white-space: nowrap;">*Licensed in CA</font><br />
</font>
<br />
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" border="0" style="padding-left: 0px; padding-right: 0px; padding-top: 0px; padding-bottom: 0px; white-space: nowrap;">
<tr>
<td align="left" valign="middle" style="padding-left: 0px; padding-right: 0px; padding-top: 0px; padding-bottom: 0px; white-space: nowrap;"><img src="http://i.imgur.com/neH8Pg2.png" border="0" width="171" height="105"></td>
<td align="left" valign="middle" style="padding-left: 0px; padding-right: 0px; padding-top: 0px; padding-bottom: 0px; white-space: nowrap;">
<font style="font-family: Arial; font-size: 12px; font-style: italic; font-weight: bold; white-space: nowrap;">Office</font><font style="line-height: 0.5; letter-spacing: 5px; white-space: nowrap;"> </font><font style="font-family: Arial; font-size: 12px; white-space: nowrap;">111.111.1111</font><font style="line-height: 0.5; letter-spacing: 5px; white-space: nowrap;"> </font><font style="font-family: Arial; font-size: 12px; font-style: italic; font-weight: bold; white-space: nowrap;">Ext.</font><font style="line-height: 0.5; letter-spacing: 6px; white-space: nowrap;"> </font><font style="font-family: Arial; font-size: 12px; white-space: nowrap;">1111</font><br/>
<font style="font-family: Arial; font-size: 12px; font-style: italic; font-weight: bold; white-space: nowrap;">Direct</font><font style="line-height: 0.5; letter-spacing: 4px; white-space: nowrap;"> </font><font style="font-family: Arial; font-size: 12px; white-space: nowrap;">111.111.1111</font><font style="line-height: 0.5; letter-spacing: 5px; white-space: nowrap;"> </font><font style="font-family: Arial; font-size: 12px; font-style: italic; font-weight: bold; white-space: nowrap;">Cell</font><font style="line-height: 0.5; letter-spacing: 5px; white-space: nowrap;"> </font><font style="font-family: Arial; font-size: 12px; white-space: nowrap;">111.111.1111</font><br/>
<font style="font-family: Arial; font-size: 12px; font-style: italic; font-weight: bold; white-space: nowrap;">Fax</font><font style="line-height: 0.5; letter-spacing: 19px; white-space: nowrap;"> </font><font style="font-family: Arial; font-size: 12px; white-space: nowrap;">111.111.1111</font><br />
<br />
<font style="line-height: 1.25; font-family: Arial; font-size: 12px; white-space: nowrap;">Big Bird Bird, Inc.</font><br />
<font style="line-height: 1.25; font-family: Arial; font-size: 12px; white-space: nowrap;">1111 Big Bird Street Dr, Ste 11, BigBirdState, CA, 99999</font><br />
<a href="http://www.linkedin.com" style="line-height: 1.25; text-decoration: none; white-space: nowrap;"><img src="http://i.imgur.com/OZ5SuTS.png" border="0" height="15" width="15"></a> </font>
<font style="line-height: 1.25; font-family: Arial; font-size: 12px; font-weight: bold; color:#f68f1e; white-space: nowrap;"><a href="http://www.notarealurl.com" style="text-decoration: none;">www.notarealurl.com</a></font>
<font style="line-height: 1.25; font-family: Arial; font-size: 12px; font-weight: bold; color:#0073b2; white-space: nowrap;">|</font>
<font style="line-height: 1.25; font-family: Arial; font-size: 12px; font-weight: bold; color:#f68f1e; white-space: nowrap;"><a href="https://www.google.com" style="text-decoration: none;">map</a></font>
<font style="line-height: 1.25; font-family: Arial; font-size: 12px; font-weight: bold; color:#0073b2; white-space: nowrap;">|</font>
<font style="line-height: 1.25; font-family: Arial; font-size: 12px; font-weight: bold; color:#f68f1e; white-space: nowrap;"><a href="mailto:jsmithjr@emailaddress.com" style="text-decoration: none; white-space: nowrap;">email</a></font>
</td>
</tr>
</table>
</body>
</html>