Cellpadding - Cellspacing in CSS

Remove the gaps between cells (cellpadding, cellspacing). Table cellpadding and cellspacing are not CSS attributes, they are HTML attributes.

table {
border-collapse: collapse; /* cellspacing equivalent */
}

table td,
table th {
padding: 0; /* cellpadding' equivalent */
}