I want to have a table with an addition between each of the cells, but not around the outer edge cells, that is, not around the table itself.
Using:
border-collapse : separate; border-spacing : 0.5em;
gives fill everywhere using:
border-collapse : collapse;
adds nothing.
Trying an alternative approach, I can only get padding between cells horizontally using the td + td selector. However, I cannot use the tr + tr selector, because it seems that tr ignoring the rules of fields, additions, and borders.
And, of course, the addition to the td simple selector applies to all cells, even to the outer edges of the outer cells.
This should only work for the current generation browser - no IE 6 or 7 for me, thank you very much. And I'm not going to sleep over IE 8, although it would be nice if that worked.
source share