IE 中的 Space Over Image(基于表格的布局电子邮件布局)

发布于 2024-10-10 05:35:05 字数 474 浏览 0 评论 0原文

我正在设计一个 html 电子邮件活动,并根据 MailChimp 和本文的建议:

http ://articles.sitepoint.com/article/code-html-email-newsletters

我正在使用表格(喘息!)来进行布局。

如果您在 IE 和 Firefox 中访问以下页面,您可以看到我遇到的间距问题:

http://test888.moochomoocho。 com/

IE 中仅在装订线图像和标题之间有一个空格。我不知道是什么原因造成的,也不知道如何消除它。

感谢您的帮助, 约拿

I am designing an html email campaign, and per the advice of MailChimp and this article:

http://articles.sitepoint.com/article/code-html-email-newsletters

I am using tables (gasp!) to do my layout.

You can see the spacing problem I have if you visit the following page in both IE and firefox:

http://test888.moochomoocho.com/

There is a space in IE only between the gutter images and the header. I can't figure out what's causing it or how to get rid of it.

Thanks for any help,
Jonah

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

比忠 2024-10-17 05:35:05

删除图像前后的空白..

make

<td colspan="3" width="600" height="174">
    <img src="images/header.png">
</td>

to

<td colspan="3" width="600" height="174"><img src="images/header.png"></td>

Delete the whitespace before and after the image..

make

<td colspan="3" width="600" height="174">
    <img src="images/header.png">
</td>

to

<td colspan="3" width="600" height="174"><img src="images/header.png"></td>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文