0

I read a lot of articles about this problem.

The problem is white space gap under images on newsletter email marketing.

I have this problem in Gmail and Outlook app on my iPad and my iPhone.

I check the results and the advices on Google and the solution is only for Windows:

  • insert display:block; on each image
  • insert line-height:0; and font-size:0; in each that contain images
  • insert font-size:0; and border-collapse: collapse; in each tables

I have already the problem on iPad...

How can I fix it please? Any advices?

Thx

Gert Arnold
  • 105,341
  • 31
  • 202
  • 291
  • You may need to add the code and a screenshot of the unwanted result to your question. – John Apr 28 '14 at 14:56

1 Answers1

0

Try if this works, if not then you have a problem.

<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>
davidcondrey
  • 34,416
  • 17
  • 114
  • 136