【问题标题】:Outlook 2013 images in table表中的 Outlook 2013 图像
【发布时间】:2016-01-07 13:40:44
【问题描述】:

我正在构建一个电子邮件模板并尝试为社交图标添加一行。

如果没有社交图标,电子邮件就可以像这样放在窗口中:

如果我调整窗口大小,电子邮件也会调整大小。

但是当我添加这些社交图标时,电子邮件比窗口大:

该行的 html 代码如下所示:

<tr>
    <td></td>
    <td>
        <a style="text-decoration: none; display: inline-block;" href="..." target="_blank">
            <img width="60" height="60" src="..." alt="LinkedIn" />
        </a>

        <a style="text-decoration: none; display: inline-block;" href="..." target="_blank">
            <img width="60" height="60" src="..." alt="Facebook" />
        </a>

        <a style="text-decoration: none; display: inline-block;" href="..." target="_blank">
            <img width="60" height="60" src="..." alt="Twitter" />
        </a>

        <a style="text-decoration: none; display: inline-block;" href="..." target="_blank">
            <img width="60" height="60" src="..." alt="Xing" />
        </a>
    </td>
    <td></td>
</tr>

有人知道发生这种情况的原因吗?

【问题讨论】:

    标签: html email templates outlook


    【解决方案1】:

    空格是否可能是问题所在?更多信息请见here

    【讨论】: