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;.

Leave a Reply

Your email address will not be published. Required fields are marked *