Jul 29 2007
CSS Tip: CSS Equivalent to CELLSPACING=0
Got this from an old post on css-d, and adapted it because it was bothering me that it was hard to find.
To simulate CELLSPACING=0, set this CSS on your table element:
border-spacing: 0px;
border-collapse: collapse;

