HTML email in outlook table width issue - content is wider than the specified table width

前端 未结 1 1642
[愿得一人]
[愿得一人] 2020-12-24 06:10

My HTML email template is displaying correctly without major problems in Gmail, Apple Mail and iOS Mail. Outlook however is a horrifying mess and I can\'t for the life of me

相关标签:
1条回答
  • 2020-12-24 06:27

    I guess problem is in width attributes in table and td remove 'px' for example

    <table border="0" cellpadding="0" cellspacing="0" width="580px" style="background-color: #0290ba;">
    

    Should be

    <table border="0" cellpadding="0" cellspacing="0" width="580" style="background-color: #0290ba;">
    
    0 讨论(0)
提交回复
热议问题