0

我正在尝试发送 HTML 时事通讯,它在除 Lotus Notes 8 之外的大多数电子邮件客户端中都能正常工作。

问题:

即使设置为 640,表格大小也会转换为 100% 宽度。我尝试将所有内容封装到一张表格中。尝试了以下方法:

<table width=640>
<table width="640">
<table cellpadding=5 width=640>
<table cellpadding="5" width="640">

显然 Lotus Notes 是这样渲染的:

<table width=3D100%>

当然,表格的格式正确,如下所示:

<table>
  <tr>
    <td>
      Foobar
    </td>
  </tr>
</table>
4

2 回答 2

1

尝试使用 CSS,这是一个包含 CSS 标准列表的页面,并且受哪些电子邮件客户端支持:

http://www.campaignmonitor.com/css/

于 2010-03-01T12:52:40.377 回答
0

你可以试试这样做吗?使用 Lotus notes 有时嵌套有助于...

<table cellspacing="0" border="0" cellpadding="0" width="100%">
  <tr>
    <td>
      <table cellspacing="0" border="0" cellpadding="0" width="640" align="center">
        <tr>
          <td style="padding:5px";>
             Foobar apply padding as inline if you must apply padding
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
于 2012-10-24T22:52:31.847 回答