html 电子邮件中的表格高度呈现?
我几乎已经完成了 eblasts 的新电子邮件模板,我在整个过程中使用了带有表格和内联 css 的简单 html。它在 Outlook 和 Yahoo Mail 中呈现良好。但在 Gmail 中和在移动设备上打开时,我设计为按钮尺寸的两个表格呈现不同。好像没有读取高度。我怎样才能让尺寸至少紧密地渲染?
<table width="110" align="left" border="0" height="15" style="width:100px; background-color:#EEF1C2; margin-left:auto; margin-right:auto; text-align:center;">
感谢您的任何建议。
I'm almost done with a new email template for eblasts, I've used simple html with tables and inline css throughout. It renders fine in Outlook, and Yahoo Mail. But in gmail and while opening on mobile, two tables that I designed as buttons dimensions render differently. It doesn't seem to be reading the height. How could I get the dimensions to render at least closely across?
<table width="110" align="left" border="0" height="15" style="width:100px; background-color:#EEF1C2; margin-left:auto; margin-right:auto; text-align:center;">
Thanks for any suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过 CSS 属性
min-height
吗?Have you tried the CSS attribute
min-height
?