Set cellpadding and cellspacing in CSS?
Asked 07 September, 2021
Viewed 670 times
  • 60
Votes

In an HTML table, the cellpadding and cellspacing can be set like this:

<table cellspacing="1" cellpadding="1">

How can the same be accomplished using CSS?

30 Answer