Remove spacing between table cells and rows

前端 未结 11 1775
我寻月下人不归
我寻月下人不归 2021-02-01 12:49

I\'m designing an HTML email template, which forces me to use tables. In the code below, I\'m having trouble (1) removing the spacing below the placeholder image and (2) removin

11条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-01 13:31

    I had a similar problem. This helps me across main email clients. Add:

    • attributes cellpadding="0", cellspacing="0" and border="0" to tables
    • style border-collapse: collapse; to tables
    • styles padding: 0; margin: 0; to each element
    • and styles font-size: 0px; line-height: 0px; to each element which is empty

提交回复
热议问题