vote up 0 vote down star

can you have cellpadding or spacing just on the top/ bottom as opposed to all (T, B, L, R) ?

flag

3 Answers

vote up 2 vote down check

CSS?

td {
  padding-top: 2px;
  padding-bottom: 2px;
}
link|flag
vote up 0 vote down

This might be a little better:

td { padding:2px 0; }

link|flag
vote up 1 vote down

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];.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.