Inactive Tutor answered 02/24/21
Tutor
New to Wyzant
I'll have to assume the border-spacing is the HTML standard styling. The default the <table> tag adds border-spacing: 2px;. In order to remove the spacing of all the table, the code would look like this:
table {
border-spacing: 0;
}
Let me know if that works,
Robert