Set cellpadding and cellspacing in CSS?
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?
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?