Outlook fügt Platz in HTML-E-Mails hinzu

Ich weiß, dass dies ein häufiges Problem ist. Ich habe hoch und niedrig nach einer Lösung gesucht. Alles, was mir begegnet ist, habe ich versucht. Wenn ich noch Haare hätte, würde ich sie herausziehen.

Ich habe eine Tabelle mit einer Reihe von Aufzählungspunkten. Das Problem bei dieser Tabelle ist, dass Outlook bei jeder Erstellung einer neuen Zeile zusätzliche Abstände unter jeder Zeile einfügt, sodass meine Tabelle größer aussieht, als sie sein sollte.

<style type="text/css">
  .ExternalClass table, .ExternalClass tr, .ExternalClass td {line-height: 100%;}
</style>

<table width="400" align="left" cellpadding="0" cellspacing="0" border="0">
  <tr style="margin:0px; padding:0px;">
    <td width="10" align="right" valign="top" style="border:none; margin:0px; padding:0px;">
      <p style="margin:0px; padding:0px;">
      &bull;
      </p>
    </td>
    <td width="380" align="left" valign="top" style="border:none; margin:0px; padding:0px;">
      <p style="margin:0px; padding:0px;">
      Info next to bullet
      </p>
    </td>
  </tr>
  <tr style="margin:0px; padding:0px;">
    <td width="10" align="right" valign="top" style="border:none; margin:0px; padding:0px;">
      <p style="margin:0px; padding:0px;">
      &bull;
      </p>
    </td>
    <td width="380" align="left" valign="top" style="border:none; margin:0px; padding:0px;">
      <p style="margin:0px; padding:0px;">
      Info next to bullet
      </p>
    </td>
  </tr>
</table>

Dinge, die ich ausprobiert habe und die nicht funktionierten:

border-collapse:collapse

display:block

display:inline-block

float:left

Antworten auf die Frage(2)

Ihre Antwort auf die Frage