如何在 Outlook 中的电子邮件模板的表列(html 表)中添加宽度 css?
我想添加列(HTML 表)的宽度以开发 Outlook 电子邮件模板。但是当我添加该属性时,它没有反映在电子邮件中。我尝试过做以下事情。
<table
cellspacing="0"
cellpadding="0"
style="table-layout: fixed; border-collapse: collapse; width: 100%"
>
<tbody>
<tr style="background-color: #1890ff">
{% for item in first_table_column_names %}
<td
width="30%"
style="border: 1px solid #000000; color: #ffffff; padding: 5px"
>
{{item.name}}
</td>
{% endfor %}
</tr>
</tbody>
</table>
我也做了
<table border="0" cellpadding="0" cellspacing="0" width="580" style="background-color: #0290ba;">
这件事在 PC 中的 Outlook 应用程序中不起作用,并且表格扭曲。任何形式的帮助将不胜感激。
I want to add width to the column (HTML table) for developing a email template for Outlook. But when I add the property it does not reflect in the email. I have tried doing the below things.
<table
cellspacing="0"
cellpadding="0"
style="table-layout: fixed; border-collapse: collapse; width: 100%"
>
<tbody>
<tr style="background-color: #1890ff">
{% for item in first_table_column_names %}
<td
width="30%"
style="border: 1px solid #000000; color: #ffffff; padding: 5px"
>
{{item.name}}
</td>
{% endfor %}
</tr>
</tbody>
</table>
I have also done
<table border="0" cellpadding="0" cellspacing="0" width="580" style="background-color: #0290ba;">
This thing does not work in Outlook Application in PC and the table gets distorted. Any kind of help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请通过嵌套表格尝试 html 邮件程序。
请找到下面的代码。这可能对你有帮助。
Please try the html mailer by nesting tables.
Please find the the below code. This may help you.