
Robert H. answered 02/24/21
Tutor
5.0
(86)
Front End Engineer with 6+ Years of CSS Experience
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