Remove spacing between table cells and rows

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

    If you see table class it has border-spacing: 2px; You could override table class in your css and set its border-spacing: 0px!important in table; I did it like

    table {
          border-collapse: separate;
          white-space: normal;
          line-height: normal;
          font-weight: normal;
          font-size: medium;
          font-style: normal;
          color: -internal-quirk-inherit;
          text-align: start;
          border-spacing: 0px!important;
          font-variant: normal;   }
    

    It saved my day.Hope it would be of help. Thanks.

提交回复
热议问题