[css-d] A Question about cell spacing

2006-05-05 Thread Visually Insane Genetically Modified Organism
Excuse me. I am having one of those getting older momenents. I am putting together a CSS file and I remember cell padding is Padding: 1em;, however, what is cell spacing? Angus MacKinnon MacKinnon Crest Saying Latin - Audentes Fortuna Juvat English - Fortune Assists The Daring Web page

Re: [css-d] A Question about cell spacing

2006-05-05 Thread Glenn E. Lanier, II
From: Angus MacKinnon Sent: Friday, May 05, 2006 12:40 PM Excuse me. I am having one of those getting older momenents. I am putting together a CSS file and I remember cell padding is Padding: 1em;, however, what is cell spacing? Angus, I generally include cellpadding and cellspacing

Re: [css-d] A Question about cell spacing

2006-05-05 Thread Zoe M. Gillenwater
Visually Insane Genetically Modified Organism wrote: Excuse me. I am having one of those getting older momenents. I am putting together a CSS file and I remember cell padding is Padding: 1em;, however, what is cell spacing? Angus, The CSS equivalent of cellspacing is to first set

Re: [css-d] A Question about cell spacing

2006-05-05 Thread Bill Brown
The CSS equivalent of cellspacing is to first set border-collapse to separate, then set the border-spacing property to whatever value you like (both on the table element). But this is not supported by WinIE, MacIE, or NN4.x. Zoe Angus: One could also set margins on the individuals

Re: [css-d] A Question about cell spacing

2006-05-05 Thread Philippe Wittenbergh
On May 6, 2006, at 4:54 AM, Bill Brown wrote: One could also set margins on the individuals cells which function in the same manner as border-spacing, even over-writing the border-collapse setting. margins do **not** apply to elements with display:table-cell.