Remove spacing between table cells and rows

前端 未结 11 1909
我寻月下人不归
我寻月下人不归 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:11

    Add border-collapse: collapse into the style attribute value of the inner table element. You could alternatively add the attribute cellspacing=0 there, but then you would have a double border between the cells.

    I.e.:

    提交回复
    热议问题