Remove All Spaces Between Table Cells
It looks like border-collapse: collapse
is all you need to remove all the space between table cells. (I used to use border: 0; margin: 0; padding: 0
across table, tr, and td in different combinations. This is nicer)
x | x | x |
y | y | y |
z | z | z |
-- end of line --