Phil -
border-collapse: collapse;
That took care of part of the problem.
I have not been able to find the CSS equivalent of table property,
cellpadding.
I went through
www.blooberry.com, no definitive answers. I'll just
leave the property in place for the time being.
Todd
oo- wrote:
> "Todd Cary" <> wrote in message
> news:7vk2d.14029$...
>
>>I have not been able to find the CSS equivalents to the table properties
>>
>>cellspacing
>>cellpadding
>>
>>I tried using
>>
>>Table {
>> border-color: #FFFFFF;
>> background-color: #FFFFFF;
>> width: 100%;
>> border: 0;
>> padding: 0;
>> margin: 0;
>>}
>>
>>but I still get spacing.
>>
>>Todd
>
>
>
> try
>
> table{
> border-collapse: collapse;
> }
>
> yopu may have to apply this to the tds and ths e.g.
>
> th, td{
> border-collapse: collapse;
> margin: 0;
> }
>
> i think there is also a border-spacing attribute for which you can assign
> the value of 0 or none but I'm not sure of its effectiveness.
>
> Phil
>
>