Removing Space Between Table Cells

August 18, 2010

To remove the spacing between cells in a table, set the following css property on the table:

table {
  border-collapse: collapse;
}

References

Tags: css table border