需要有关电子邮件创意的帮助
我正在努力让电子邮件变得富有创意。
我给每个 td 的宽度为 156px - 但由于某种原因它们的大小为 228px。
您可以在这里看到我所做的:
http://lirantadmor.co.il/emailhelp
那么为什么每个当我给他们 156px 时,td 是 228px?
I'm trying to make email creative.
I give each td the width of 156px - but for some reason they are in size of 228px.
You can see what I did here:
http://lirantadmor.co.il/emailhelp
So why each td is 228px when I give them 156px?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所有 TD 的总和必须达到
中指定的总数。目前您已将其设置为 700 像素。
请注意:HTML 电子邮件并不支持所有 CSS 属性。这是一个方便的参考:
http://www.campaignmonitor.com/css/
All TDs must add up to the total specified in
<table>
. You currently have this set to 700 pixels.Beware: not all CSS properties are supported in HTML Emails. Here is a handy reference:
http://www.campaignmonitor.com/css/
如果您的表格宽度设置为 720 像素,那么您的行需要为 720 像素。所有 td 的总和不等于您在表格上设置的宽度,因此它将扩展以适合表格/行的宽度
If you have a table that is set to be a width of 720px, then your row will need to be 720px. The sum of all your td's doesn't equal to the width you set on the table so it will expand to fit the width of the table/row