2017-09-26 30 views
0

当在Mac OS上显示使用Outlook 2017创建的HTML签名时,我正面临Android上GMail App的奇怪行为。GMail App中的Outlook HTML签名:​​元素之间的差距

首先,这里是我做过什么:

  1. 我创建了一个简单的表格布局的HTML签名,并在浏览器中打开
  2. 我复制从浏览器窗口中的内容到签名板在展望(展望 - >设置 - >签名)
  3. 我保留了原来的格式粘贴内容

现在,经过签名基本上看起来很好的浏览器,Outlook将Ø Mac和iPhone标准邮件应用程序。在Android的Gmail中,表格行之间有很大差距,我无法找到控制它们的方法。当然,我做了一些研究,最后提出了讨论herehere以及许多其他来源的建议。格式问题已在Google Forums中得到解决。 Some People能够将其分解为由Outlook添加的特定CSS类MsoNormal,但它们都很古老,并且这些建议似乎对我无效。我已经尝试了很多东西,最后得到了三个不同的版本,都有相同或相似的结果。

第一版本使用表内的div来构造文本:

<table style='font-family:Arial; cellspacing:0px; cellpadding:0px; padding:0px; margin:0px; border-spacing: 0; line-height:60%;'> 
 
    <tbody> 
 
    <tr> 
 
     <td> 
 
     <img src='http://361nutrition.de/signature/img/dummy.jpg' alt='line' style='width:85px; height:130px; display:block; vertical-align:text-top; line-height:0;' /> 
 
     </td> 
 
     <td style='width:5px'></td> 
 
     <td style='vertical-align:top;'> 
 
     <div style='font-size: 11px; margin:0px; padding:0px;'> 
 
      Peter Pan<br> 
 
      Chief Executive Officer<br> 
 
      <b>The Company</b> 
 
     </div> 
 
     <div style='font-size: 9px; margin:0px; padding:0px;'> 
 
      Reach me at:<br> 
 
      [email protected]<br> 
 
      +00 324 244 20 
 
     </div> 
 
     <div style='font-size: 9px; margin:0px; padding:0px;'> 
 
      ...or visit me at:<br> 
 
      My Office<br> 
 
      Office Street Nr.<br> 
 
      44556 Officetown 
 
     </div> 
 
     </td> 
 
    </tr> 
 

 
    </tbody> 
 
</table>

第二步使用表内的表:

<!DOCTYPE html> 
 
<html> 
 
<head> 
 
<meta charset="UTF-8"> 
 
<style type="text/css"> 
 
     p.MsoNormal { 
 
      margin: 0px !important; 
 
     } 
 
</style> 
 
</head> 
 
<body> 
 
<table class='tbl' style='min-width:300px; font-family:Arial; cellspacing:0px; cellpadding:0px; padding:0px; margin:0px; border-spacing: 0; line-height:60%;'> 
 
    <tbody class='tbl_body'> 
 
    <tr class='tbl_tr' style="display: block; white-space: nowrap;"> 
 
     <td class='tbl_td' style="line-height:0; display: inline-block;"><img src='http://361nutrition.de/signature/img/dummy.jpg' alt='line' style='width:85px; height:130px; display:block; vertical-align:text-top' /></td> 
 
     <!--<td style='width:5px; display: inline-block;'></td>--> 
 
     <td class='tbl_td' style='vertical-align:top; display: inline-block;'> 
 
     <table class='tbl' style='font-family:Arial; cellspacing:0px; cellpadding:0px; padding:0px; margin:0px; border-spacing: 0; line-height:60%;'> 
 
      <tbody class='tbl_body'> 
 
      <tr class='tbl_tr' style='font-size: 11px; margin:0px; padding:0px; display: block; white-space: nowrap;'> 
 
       <td class='tbl_td' style="display: inline-block;">Peter Pan<br>Chief Executive Officer<br><b>The Company</b></td> 
 
      </tr> 
 
      <tr class='tbl_tr' style='font-size: 11px; margin:0px; padding:0px; display: block; white-space: nowrap; '> 
 
       <td class='tbl_td' style="display: inline-block;">Reach me at:<br>[email protected]<br>+00 324 244 20</td> 
 
      </tr> 
 
      <tr class='tbl_tr' style='font-size: 11px; margin:0px; padding:0px; display: block; white-space: nowrap;'> 
 
       <td class='tbl_td' style="display: inline-block;">...or visit me at:<br>My Office<br>Office Street Nr.<br>44556 Officetown</td> 
 
      </tr> 
 
      </tbody> 
 
     </table> 
 
     </td> 
 
    </tr> 
 

 
    </tbody> 
 
</table> 
 
</body> 
 
</html>

最后我用了一个3×2台布局与图像跨越3行:

<!DOCTYPE html> 
 
<html> 
 
<head> 
 
    <meta charset="UTF-8"> 
 
    <style type="text/css"> 
 
      p.MsoNormal { 
 
       margin: 0px !important; 
 
      } 
 
    </style> 
 
</head> 
 
<body> 
 
    <table style='font-family:Arial; cellspacing:0; cellpadding:0; border:0; border-collapse: collapse; padding:0px; margin:0px; border-spacing: 0; line-height:60%;'> 
 
    <tbody> 
 
     <tr style='margin:0px; padding:0px;'> 
 
     <td rowspan="3" style='line-height:0'> 
 
      <img src='http://361nutrition.de/signature/img/dummy.jpg' alt='line' style='width:85px; height:130px; display:block; vertical-align:text-top' /> 
 
     </td> 
 
     <td style='font-size: 11px; margin:0px; padding:0px;'>Peter Pan<br>Chief Executive Officer<br><b>The Company</b></td> 
 
     </tr> 
 
     <tr style='margin:0px; padding:0px;'> 
 
     <td style='font-size: 11px; margin:0px; padding:0px;'>Reach me at:<br>[email protected]<br>+00 324 244 20</td> 
 
     </tr> 
 
     <tr style='margin:0px; padding:0px;'> 
 
     <td style='font-size: 11px; margin:0px; padding:0px;'>...or visit me at:<br>My Office<br>Office Street Nr.<br>44556 Officetown</td> 
 
     </tr> 
 
    </tbody> 
 
    </table> 
 
</body>

在Gmail中的表的方法的结果看起来有点像这样:

Table Layout

而div方法有点像这样:

Div Layout

正如您所看到的,文本框之间有很大差距,尽管没有余量,填充,单元格间距或任何其他值。

我已经摆弄CSS了很多,并没有拿出任何解决方案。

我希望有人能帮忙。

问候, 马库斯

回答

0

首先,你尝试在你的脑袋部分使用<meta name="viewport" content="width=device-width" />

然后,你也尽量减少你的<td>line-height,或包裹你所有的信息在一个<td>标记,并把一些<br>断裂呢?

希望它的帮助。

Chaaampy。