0

我在 Outlook 中存在额外间距的问题,您可以在附加的图像上看到我以红色突出显示。我在这张图片中使用了 p

代码用于此图像

<p style=" width:125; height:125; margin:0px; padding:0px 10px 0px 10px; float:right; line-height:125px; "><img src="http://hmsdesignz.com/newsletter/6of6/images/icon.jpg" alt="" width="125" height="125" hspace="0" vspace="0" border="0" align="right"  style="display:block;"/></p>

在此处输入图像描述

请告诉我如何删除这个额外的间距

4

1 回答 1

0

需要更多代码来查看它如何与周围的 html 交互。

您正在使用<p>标签,我会避免这样做。图像本身应位于表格单元格中。

像这样的东西:

<table width="600" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td width="500" height="70" bgcolor="#959595">
your sign-off text here
    </td>
    <td width="100" height="70"  bgcolor="#757575">
<img src=""... style="display:block;">
    </td>
  </tr>
  <tr>
    <td width="600" height="70" colspan="2" bgcolor="#252525">
footer
    </td>
  </tr>
</table> 
于 2012-12-14T15:07:52.030 回答