In an HTML table, the cellpadding
and cellspacing
can be set like this:
-
2020-11-22 02:18
td {
padding: npx; /* For cellpadding */
margin: npx; /* For cellspacing */
border-collapse: collapse; /* For showing borders in a better shape. */
}
If margin
didn't work, try to set display
of tr
to block
and then margin will work.