I've encountered an issue with my table where the border becomes darker and thicker at the intersection of two cells. Is there a way to resolve this problem? I have included my CSS code below.
.custom-table-2 {
border-collapse: separate;
/*border-collapse: collapse;*/
border-spacing: 0;
}
.custom-table-2 td {
border: 1px solid #00953B;
}
.custom-table-2 tr:first-child td:first-child {
border: 0px;
}
.custom-table-2 tr:nth-child(2) td:first-child {
border-top-left-radius: 16px;
}
.custom-table-2 tr:first-child td:nth-child(2) {
border-top-left-radius: 16px;
}
.custom-table-2 tr:first-child td:last-child {
border-top-right-radius: 16px;
}
.custom-table-2 td:nth-child(2) {
background-color: #7CCB99;
}
Changing 'border-collapse' to 'collapse' makes the border thinner, but removes the border radii as well. Any suggestions for finding a solution?