RE: [css-d] Table Row separation

2005-07-25 Thread Pringle, Ron
> Could you give an example of how to do this? And will it > work on IE 5? > > Thanks > > > On 7/22/05, Philippe Wittenbergh <[EMAIL PROTECTED]> wrote: > > > > What you're probably looking for is the separate border > model, and more > > specifically, the 'border-spacing' property. > > tab

Re: [css-d] Table Row separation

2005-07-24 Thread Lst Recv
Could you give an example of how to do this? And will it work on IE 5? Thanks On 7/22/05, Philippe Wittenbergh <[EMAIL PROTECTED]> wrote: > > What you're probably looking for is the separate border model, and more > specifically, the 'border-spacing' property. > table {border-collapse:separate

Re: [css-d] Table Row separation

2005-07-22 Thread Glenn Nilsson
Sorry, had a deadline at my hands when I wrote that =) On 7/22/05, Philippe Wittenbergh <[EMAIL PROTECTED]> wrote: > > On 22 Jul 2005, at 4:51 pm, Glenn Nilsson wrote: > > > Each row in a table contains cells (td|th), put the margin on them > > instead. > > > > If you just need it on one row, pu

Re: [css-d] Table Row separation

2005-07-22 Thread Philippe Wittenbergh
On 22 Jul 2005, at 4:51 pm, Glenn Nilsson wrote: Each row in a table contains cells (td|th), put the margin on them instead. If you just need it on one row, put an id on the row, and use a similar selector: #tr td, #tr th { margin-top: 1em; } That won't work. 'margin' doesn't apply to tabl

Re: [css-d] Table Row separation

2005-07-22 Thread Glenn Nilsson
Each row in a table contains cells (td|th), put the margin on them instead. If you just need it on one row, put an id on the row, and use a similar selector: #tr td, #tr th { margin-top: 1em; } ~glenn - caffeine's in my veins On 7/22/05, Lst Recv <[EMAIL PROTECTED]> wrote: > It seems that the p

[css-d] Table Row separation

2005-07-21 Thread Lst Recv
It seems that the padding and margin properties don't work for table rows. Is their an equivalent that will do the same thing - create blank colored space (ala padding) and blank space (ala margin) in between rows? Will it work on IE 5+? (I can use the height property, but a) I then need to fix