Click to See Complete Forum and Search --> : Table Cellspacing


Joseph Witchard
06-29-2008, 10:25 PM
Is there a way to specify your table cell spacing in CSS rather than in the table HTML code?

Quidam
06-30-2008, 01:11 AM
You can only remove it completely with css

table {
border-collapse: collapse;
}


There may be a way to specify it, but I haven't found a smooth solution.
Hope it helps.

Joseph Witchard
07-01-2008, 07:37 PM
Thanks!