-
space in a TD
I have a table with these attributes:
cellspacing="0" cellpadding="0"
Now, obviously, any TD or cell in the table will have no spacing between the text and the border.
However, I want ONE particular TD to have cellspacing in there. Is it possible to implement this for that particular TD?
-
If you did that wouldn't it affect the size of the row and column too?
You could setting the padding with CSS...
Code:
<td style="padding:2px;">
-
Quote:
Originally posted by punkpie_uk
If you did that wouldn't it affect the size of the row and column too?
You could setting the padding with CSS...
Code:
<td style="padding:2px;">
I will try that this evening. Do you know if that's supported on older browsers?
-
oh, and thanks for replying. Somehow I had a feeling it'd be you.
-
No problem.
some CSS is supported in Netscape 4 but its extremely buggy. IE4+, netscape 6 and Opera 4 should be ok.
to be honest, I'm not even sure if it'll have an effect but its worth a try...