I have a table that I built out with 0px
border, and I am trying to get images in each row to fit seamlessly to one another but even though the border does not show there is still a 1px
gap in between the rows. Is there a way to fix this?
table {
border-collapse: collapse;
border-spacing: 0px;
font-size: 10px;
}
table th, table td {
padding: 0px;
margin: 0px;
border-width: 0px;
}
tr {
padding: 0px;
margin: 0px;
border-collapse: collapse;
border-spacing: 0px;
}