Lotus Notes 8 中的 html 时事通讯
我正在尝试发送 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>
I am trying to send HTML newsletters and it works fine in most email clients except Lotus Notes 8.
Problem:
Table size get converted to 100% width even though set to 640. I have tried to encapsulated everything into one table. Tried the following:
<table width=640>
<table width="640">
<table cellpadding=5 width=640>
<table cellpadding="5" width="640">
Apparently Lotus Notes render it like this:
<table width=3D100%>
Of course the table has be formatted correctly like so:
<table>
<tr>
<td>
Foobar
</td>
</tr>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 CSS,这里有一个页面,其中包含 CSS 标准列表以及电子邮件客户端支持的标准:
http ://www.campaignmonitor.com/css/
Try using CSS, here's a page with a list of CSS-standards and which are supported by what email-client:
http://www.campaignmonitor.com/css/
你能尝试这样做吗?使用 Lotus Notes,有时嵌套会有所帮助...
Can you try doing this? with Lotus notes sometimes nesting helps...