In an HTML table, the cellpadding
and cellspacing
can be set like this:
-
2020-11-22 02:24
Try this:
table {
border-collapse: separate;
border-spacing: 10px;
}
table td, table th {
padding: 10px;
}
Or try this:
table {
border-collapse: collapse;
}
table td, table th {
padding: 10px;
}