0

我知道这是一直被问到的那种问题,但我已经通过了我能找到的每一个答案,但没有什么能解决这个问题。问题是 Outlook 2010 在表格单元格内的每个图像下方(或上方)添加了一个像素间隙。(是低于还是高于取决于你是使用 valign="top" 还是 valign="bottom")。设置显示:块;似乎没有帮助。

如果您在 Windows 7 上的 Outlook 2010 中查看此示例,您将在 Google 徽标下方看到一条红线。我所做的一切都不会删除这条线。

<table width="275" height="95" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;" bgcolor="red">
    <tr>
        <td width="275" height="95" align="left" valign="bottom" style="font-size:0; line-height: 0; border-collapse: collapse;">
            <img src="https://www.google.co.uk/images/srpr/logo3w.png" border="0" style="display: block; vertical-align: top;"></td>
    </tr>
</table>

我得出的结论是不可能删除这条线。有人愿意证明我错了吗?

4

6 回答 6

1

试试这个 - 看!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<table width="275" height="95" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;" bgcolor="red;">
<tr>
<td width="275" height="95" align="left" valign="bottom" style="font-size:0; line-height: 0; border-collapse: collapse;"><img src="https://www.google.co.uk/images/srpr/logo3w.png" border="0" style="display: block; vertical-align: top;"></td>
</tr>
</table>

</body>
</html>
于 2014-07-15T22:16:48.623 回答
1

请试试这个并恢复

<img src="https://www.google.co.uk/images/srpr/logo3w.png" border="0" style="display: block;" align="top">
于 2012-08-23T12:42:54.707 回答
1

即使我遇到了同样的问题,但我通过在 div 、 p 标签中插入图像并覆盖邮件客户端生成的外部 css 解决了这个问题。

<td colspan="3">
        <div class="override" style="height: 201px !important;">
        <p style="height: 201px !important; ">
            <img src="images/path" width="800" height="201" alt="">
        </p>
        </div>
</td>

<style type="text/css">
p {margin-bottom: 0;}
.ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td {
line-height: 0%;
}
p, .override{
font-size:0pt ;
line-height:0px;
}
</style>

希望这对任何人都有帮助。一切顺利..

于 2014-10-14T14:19:28.613 回答
0

嘿,我知道这是一个旧线程,但我刚刚遇到了这个问题,实际上设法以一种奇怪的方式解决了它。在我的情况下,我的图像下方出现了 1 个像素的间隙。我从表格结构中删除了图像,然后将 html 高度设置为比图像的实际高度小一个像素。以下是我在电子邮件中使用的确切代码(图像 src 已编辑)。

</table>

    <img src='http://img1.jpg' height='400' width='552' alt='' border='0' style='display:block;align:bottom;border:none;margin:0;padding:0;height:401px;' />

<table border='0' style='padding:0;margin:0;border-collapse:collapse;' cellpadding="0" cellspacing="0">

不知何故,这解决了它。我不确定是否真的需要从表结构中删除图像。

于 2012-11-01T15:01:33.593 回答
0

对我有用的一个技巧:将 align="absbottom texttop" 添加到 img 和 line-height:10px (或更少)到包装图像的 td

于 2016-06-17T10:42:06.353 回答
0

删除align="left"(或"right")。

于 2019-08-14T15:28:40.407 回答