up vote 267 down vote favorite
60
share [g+] share [fb]

How can I control cellpadding and cellspacing in a CSS stylesheet to obtain the same effect as when putting the attributes on the table tag?

link|improve this question

71% accept rate
106  
You really should click the little green checky mark next to @Eric Nguyen's answer. – Joel Etherton Jul 15 '11 at 17:28
@kokos See the above :) – Sander Nov 25 '11 at 9:35
yea green checky thing! – MorganTiley Nov 30 '11 at 19:51
feedback

9 Answers

None of the answers here are complete, so I'll merge them into a comprehensive one.

First of all, you can control cellspacing by applying the border-spacing CSS property to your table. This will work in almost all popular browsers except for IE up through v7. For browsers which support it, this property will even allow separate horizontal and vertical spacing. If you need to support IE 5, 6, or 7, you're almost out of luck.

However, I say "almost" because these browsers still support the border-collapse property, which merges the borders of adjoining table cells. If you're trying to eliminate cellspacing (i.e. cellspacing="0") then border-collapse:collapse should have the same effect: no space between table cells. This support is buggy, though, as it does not override an existing cellspacing HTML attribute on the table element.

In short: for non-IE 5-7 browsers, border-spacing handles you. For IE, if your situation is just right (you want 0 cellspacing and your table doesn't have it defined already), you can use border-collapse:collapse.

Note: For a great overview of CSS properties that one can apply to tables and for which browsers, see this fantastic Quirksmode page.

link|improve this answer
21  
How is this not accepted?! Thanks so much. – UltimateBrent May 27 '11 at 5:55
9  
This is unhelpful if I want non-zero cellspacing on IE7. – Tobias Cohen Jun 6 '11 at 2:20
1  
cellpadding="0" can still make a difference in Chrome 13.0.782.215, even if border-collapse:collapse and border-spacing are applied to the table. – Lee Whitney Aug 25 '11 at 3:01
1  
That certainly makes sense due to css specificity, so you may need to apply the styles to a css id for maximum specificity. Not sure that'll override attribute values in all cases, but it's the place to start checking. – Tchalvak Oct 24 '11 at 17:16
2  
@LeeWhitney you need to set padding: 0 on your table cells. – Martin Ørding-Thomsen Nov 29 '11 at 10:09
show 1 more comment
feedback

Setting margins on table cells doesn't really have any effect as far as I know. The true CSS equivalent for cellspacing is border-spacing - but it doesn't work in IE. You can use border-collapse: collapse to reliably set cell spacing to 0 as mentioned, but for any other value I think the only cross browser way is to keep using the cellspacing attribute.

link|improve this answer
27  
In today's age that reality is suckage to the Nth degree. – John K Jul 9 '10 at 2:36
4  
This is almost correct, but border-collapse only works in IE 5-7 if the table doesn't already have a cellspacing attribute defined. I've written a comprehensive answer that merges all the correct parts of the other answers on this page in case that's helpful. – Eric Nguyen Jul 9 '10 at 2:36
feedback
table
{
    border-collapse: collapse; /* 'cellspacing' equivalent */
}

table td, table th
{
    padding: 0; /* 'cellpadding' equivalent */
}
link|improve this answer
16  
+1 Too the point no talky – Donny V. Mar 28 '11 at 20:19
This is actually the only thing that I could get to work for me, although I applied the info to an id to avoid being overly general. – Tchalvak Nov 15 '11 at 16:50
feedback

Also, if you want cellspacing="0", don't forget to add border-collapse: collapse in your table's stylesheet.

link|improve this answer
feedback

TBH. For all the fannying around with CSS you might as well just use cellpadding="0" cellspacing="0" since they are not deprecated...

Anyone else suggesting margins on <td>'s obviously has not tried this.

link|improve this answer
2  
They are actually deprecated in html5. – Tchalvak Nov 15 '11 at 16:49
feedback

For those who want a non-zero cellspacing value, this worked for me, but I'm only able to test it in Firefox. See the Quirksmode link posted above for compatibility details. Seems it may not work with older IE versions.

table {
  border-collapse: separate;
  border-spacing: 2px;
}
link|improve this answer
feedback

This hack works for IE6+, Chrome, Firefox, and Opera:

table {
  border-collapse: separate;
  border-spacing: 10px;
  *border-collapse: expression('separate', cellSpacing = '10px');
}

The * declaration is for IE 6 and 7, other browsers will properly ignore it.

expression('separate', cellSpacing = '10px') returns 'separate' but both statements are run, as in Javascript you can pass more arguments than expected and all of them will be evaluated.

link|improve this answer
feedback

The simple solution to this problem is:

table
{
    border: 1px solid #000000;
    border-collapse: collapse;
    border-spacing: 0px;
}
table td
{
    padding: 8px 8px;
}
link|improve this answer
feedback

Let's say you want 5 cellpadding and 10 cellspacing, do this:

HTML

<table border="0" cellpadding="0" cellspacing="0">
    <tr>
        <td>Cell</td>
    </tr>
</table>

CSS

td
{
    margin:10px;
    padding:5px
}
link|improve this answer
Interesting what in this solution we have to set сellpadding and cellspacing attributes to zero anyway. :) – Alexander Prokofyev Dec 10 '08 at 14:13
2  
Don't hate the player, hate the game – Andrew G. Johnson Dec 10 '08 at 17:05
15  
No. Margins around table data cells are not how you set cellspacing. See other answers. – Quentin Jul 15 '09 at 12:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.