表格边框未显示在Outlook桌面应用中,但在通过浏览器打开时在gmail和Outlook中可见

问题描述 投票:0回答:1

我需要以可呈现的格式以表格的形式向用户发送数据。我有代码可以做到但无法找到为什么它没有出现在Outlook桌面应用程序上。我如何处理它以确保它也适用于Outlook应用程序?

我已经尝试使用十六进制代码和黑灰色的颜色没有任何效果。

table1.get_html_string(attributes={”border-top”:”2px solid #000000"})
print(table1)
<table frame="box" rules="all" border-top="2px solid #000000">
    <tr>

此表通过邮件发送时以表格格式打印,但跳过边框,仅通过Outlook桌面App.Works通过浏览器打开时精通gmail和outlook

python html outlook prettytable
1个回答
0
投票

border-top在Outlook中运行得很好。你的CSS无效。试试这个:

<table style="border-top: 2px solid #000000;">
  <tr>
    <td>&nbsp;</td>
  </tr>
</table>

祝好运。

© www.soinside.com 2019 - 2024. All rights reserved.