can you have cellpadding or spacing just on the top/ bottom as opposed to all (T, B, L, R) ?
+1
A:
Cellspacing is all around the cell and cannot be changed (i.e. if it's set to one, there will be 1 pixel of space on all sides). Padding can be specified discreetly (e.g. padding-top, padding-bottom, padding-left, and padding-right; or padding: [top] [right] [bottom] [left];.
Robert C. Barth
2008-12-27 05:53:02
+1
A:
There is css:
table { border-spacing: 40px 10px; }
for 40px wide and 10px high
Nathan Moos
2010-08-17 21:01:19