I know cellpadding="0" is padding: 0px in CSS
what is the equivalent of cellspacing="0" in CSS?
what is the equivalent of cellspacing="0" in CSS?
table {
border-left: 1px solid #B6B6B6;
border-collapse: collapse;
margin: auto;
text-align: left;
font-size: 1em;
}
th,
td {
padding: 5px;
border-right: 1px solid #B6B6B6;
border-bottom: 1px solid #B6B6B6;
}

Comment