Add space between cells (td) using css

前端 未结 7 646
走了就别回头了
走了就别回头了 2020-12-24 04:13

I am trying to add a table with space between cell as the background colour of the cell is white and the background color of the table is blue, you can easily see that paddi

7条回答
  •  無奈伤痛
    2020-12-24 04:54

    table { 
      border-spacing: 10px; 
    } 
    

    This worked for me once I removed

    border-collapse: separate;
    

    from my table tag.

提交回复
热议问题