Posted by Jonathan N. Little on 06/07/07 18:50
Jim S wrote:
>> 2. I use a stylesheet for my tables, but cannot find a css equivalent to
>> cellspacing, which I have to add by HTML. Is there a way to avoid this?
>
Most of the time what folks are looking for:
cellspacing="0"
in CSS:
table { border-collapse: collapse; }
cellspacing="3"
in CSS:
table { border-collapse: separate; border-spacing: 3px; }
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|