> 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 on my table tag 

<table cellspacing=0 cellpadding=0>

then include a rule to collapse borders on the table element

table
{
   border-collapse:collapse;
}

and set padding as desired:

td,
th
{
   padding:1em;
}

HTH.

--G


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to