How to add space between cells (td) using CSS? Spread the love To add space between cells (td) using CSS, we set the border-spacing property. For instance, we write table { border-spacing: 10px; } to add spacing to the cells in the table with border-spacing: 10px;. Related