Re: [css-d] Table will not collaspe borders

2005-05-09 Thread Arnie Shafer
Thanks to Ron and all who responded. The problem is fixed. Arnie - Original Message - From: "Pringle, Ron" <[EMAIL PROTECTED]> To: "'Arnie Shafer'" <[EMAIL PROTECTED]>; "'css-d list'" Sent: Monday, May 09, 2005 5:19 PM Sub

Re: [css-d] Table will not collaspe borders

2005-05-09 Thread L. David Baron
On Monday 2005-05-09 16:56 -0400, Arnie Shafer wrote: > .table1 td{ > border: 3px solid #003300; > border-collapse: collapse;} 'border-collapse' applies to tables, not table cells. It has to be specified for the table element or an ancestor of the table element (since it inherits). It cannot be

RE: [css-d] Table will not collaspe borders

2005-05-09 Thread Pringle, Ron
> Please go to the Family website below. Select Veterans. > You will see the double borders around the interior cells of > the tables. I would rather have single borders. > > I have the following in my css file but it has no effect. > what am I doing wrong? > .table1 td{ > border: 3px solid

Re: [css-d] Table will not collaspe borders

2005-05-09 Thread Justin Reid
> You will see the double borders around the interior cells of the tables. I > would rather have single borders. Instead of "border-collapse: collapse;" you could try this: .table1 { border-top: 3px solid #003300; border-right: 3px solid #003300; } .table1 td { border-bottom: 3px solid #00330

Re: [css-d] Table will not collaspe borders

2005-05-09 Thread Schalk Neethling
Arnie [snip] Please go to the Family website below. Select Veterans. You will see the double borders around the interior cells of the tables. I would rather have single borders. [/snip] This might help: http://www.complexspiral.com/publications/uncollapsing-margins/ -- Kind Regards Schalk Neet

[css-d] Table will not collaspe borders

2005-05-09 Thread Arnie Shafer
Please go to the Family website below. Select Veterans. You will see the double borders around the interior cells of the tables. I would rather have single borders. I have the following in my css file but it has no effect. what am I doing wrong? .table1 td{ border: 3px solid #003300; border-c