Space between . Why and how can I remove?

后端 未结 5 1063
谎友^
谎友^ 2020-12-10 00:57

I create \"normal\" table and all TD\'s have \"border: 1px solid #e6e6e6\" and \"margin: 0\". TR and TABLE have too \"margin/padding: 0\" but I still have space between TDs

5条回答
  •  春和景丽
    2020-12-10 01:09

    Since cellspacing and cellpadding are no longer supported in HTML5, use the following CSS:

    table {
      border-collapse: collapse;
    }
    

    jsfiddle

提交回复
热议问题