How to remove unwanted table cell borders with CSS? Spread the love To remove unwanted table cell borders with CSS, we set the border-collapse property. For instance, we write table { border-collapse: collapse; } to remove the table cell borders with border-collapse: collapse;. Related