Add space between cells (td) using css

前端 未结 7 648
走了就别回头了
走了就别回头了 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:44

    You want border-spacing:

    Or in a CSS block somewhere:

    table {
      border-spacing: 10px;
    }
    

    See quirksmode on border-spacing. Be aware that border-spacing does not work on IE7 and below.

    提交回复
    热议问题