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
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
> 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
> 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
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
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