0

我读了很多关于这个问题的文章。

问题是时事通讯电子邮件营销图像下的空白间隙。

我在 iPad 和 iPhone 上的 Gmail 和 Outlook 应用程序中遇到了这个问题。

我在 Google 上查看了结果和建议,该解决方案仅适用于 Windows:

  • display:block;在每张图片上插入
  • 插入line-height:0;font-size:0;在每个包含图像的地方
  • 在每个表中插入font-size:0;border-collapse: collapse;

我已经在iPad上遇到了问题...

请问我该如何解决?有什么建议吗?

谢谢

4

1 回答 1

0

试试这是否有效,如果没有,那么你有问题。

<style>
Table, tr td { border-collapse:collapse;}
Img {border:0;padding:0;margin:0;}
</style>
<table border=0 cellpadding=0 cellspacing=0>
    <tr><td><img style="display:block;"></td></tr>
</table>
于 2014-04-28T15:28:39.757 回答