增加通过电子邮件发送的多个表格的边框宽度

时间:2018-08-21 13:37:59

标签: html html5 html-table

如何增加通过HTML标记发送电子邮件的多个表格的宽度,我正尝试将宽度表格样式设置为 table,th,td {{border:1px solid black;边界塌陷:塌陷; 宽度:100%; }} th,td {{padding:5px; }} ,但它不会更改任何表的宽度,并且表内的数据是自动换行的,但是我希望文本不自动换行。

      html = """
     <html>
     <head>
     <style> 
      table, th, td {{ border: 1px solid black; border-collapse: collapse; 
       }}
      th, td {{ padding: 5px; }}
     </style>
     </head>
     <body><p>Hello, Friend.</p>
     <p>Here is your data1:</p>
     {table1}
     <p>Here is your data2:</p>
     {table2}
     <p>Regards,</p>
     <p>Me</p>
     </body></html>
     """

0 个答案:

没有答案