Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In inline HTML, the table styles cellpadding and cellspacing can be set

<table cellspacing="1" cellpadding="1">

How would this be accomplished using a CSS stylesheet?

share|improve this question
17  
I think that this question and answers should be part of the community wiki. – starbeamrainbowlabs Aug 23 '12 at 11:38
11  
Because he's getting a lot of rep? – GONeale Nov 8 '12 at 4:50
@GONeale Well, when you get (724*10)-(3*3) or 7,231 rep from a single question.... – Cole Johnson Jan 29 at 20:12
11  
Well, if he deserves it. However, unfortunately it's a fundamental flaw in SO though, the more common the question, the more frequently visited, and the more up-voted. So where rep is meant to reflect an expert, that's not always the case. – GONeale Jan 31 at 4:38
1  
@GONeale: I think rep means contribution to SO. Contribution means increasing daily hits = site value. – Neolisk Apr 2 at 17:49
show 1 more comment

13 Answers

up vote 1105 down vote accepted

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.

table { 
  border-spacing:0;
  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.

share|improve this answer
30  
This is unhelpful if I want non-zero cellspacing on IE7. – Tobias Cohen Jun 6 '11 at 2:20
5  
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
117  
@TobiasCohen IE7 is unhelpful – GarciaWebDev Dec 20 '11 at 19:41
21  
why was this accepted as the answer, it only tells how to achieve thin borders, it doesn't answer at all how to achieve cellpadding and cellspacing with css – dreta Jul 3 '12 at 19:16
8  
I don't see a mention about cellpadding in this answer. A half of the question is about that. – ft1 Nov 24 '12 at 23:07
show 4 more comments
table
{
    border-collapse: collapse; /* 'cellspacing' equivalent */
}

table td, table th
{
    padding: 0; /* 'cellpadding' equivalent */
}
share|improve this answer
1  
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. – Kzqai Nov 15 '11 at 16:50
4  
That's cellspacing=0 equivalent. The equivalent for cellspacing=1 is completely different. See the accepted answer. – TRiG Jul 25 '12 at 14:08
Shouldn't table td and table th just be td and th respectively? It works either way, but a smaller selector means slightly faster matching – Cole Johnson Jan 29 at 20:13

DEFAULT:

enter image description here

CELLSPACING:

controls the space between table cells

enter image description here

CELLPADDING:

sets the amount of space between the contents of the cell and the cell wall

enter image description here

BOTH:

enter image description here

BOTH SPECIAL:

enter image description here

Try it yourself!

Here you can find the old html way of achieving this.

share|improve this answer
5  
An excellent pictorial representation and jsfiddle example. – Dan Atkinson Sep 21 '12 at 9:01
6  
There is a typo in "border-collapse: seperate", it should be "border-collapse: separate". Also, you can either use "border-collapse: separate" or "border-spacing: 2px", it makes no difference. – yagooar Oct 25 '12 at 9:52
+1 from my side for visually present the answer. Good Work :-) – Happy Singh Jan 12 at 4:37
+1 @yagooar for 'separate', if you're using a reset css that sets a default you might be wondering why it's not working – Daniel Jan 31 at 0:02

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.

share|improve this answer
32  
In today's age that reality is suckage to the Nth degree. – John K Jul 9 '10 at 2:36
5  
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

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.

share|improve this answer
1  
+1 worked for me. – N30 Feb 21 '12 at 22:34
2  
+1 worked for me out of the box :) – Davide Piras May 4 '12 at 12:30

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;
}
share|improve this answer

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

share|improve this answer

The simple solution to this problem is:

table
{
    border: 1px solid #000000;
    border-collapse: collapse;
    border-spacing: 0px;
}
table td
{
    padding: 8px 8px;
}
share|improve this answer
Worked for me! Thanks! – JavaAndCSharp Mar 25 '12 at 12:47

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.

share|improve this answer
14  
They are actually deprecated in html5. – Kzqai Nov 15 '11 at 16:49

Just mentioning that cellpadding and cellspacing have been made obsolete, and I received a shock when Google Chrome 23 didn't support it.

share|improve this answer

Wrap the contents of the cell with a div and you can do anything you want, but you have to wrap every cell in a column to get a uniform effect. For example, to just get wider left & right margins:

So the CSS will be,

div.cellwidener {
  margin:0px 15px 0px 15px;
}
td.tight {
  padding:0px;
}

And your HTML will be,

<table border="0">
  <tr>
     <td class="tight"><div class="cellwidener">My content</div></td>
  </tr>
</table>

Please refer code here

Yes, it's a hassle. Yes, it works with IE. In fact, I've only tested this with IE, because that's all we're allowed to use at work.

share|improve this answer

From what I understand from the W3C classifications is that <table>s are meant for displaying data 'only'.

Based on that I found it a lot easier to create a <div> with the backgrounds and all that and have a table with data floating over it using position: absolute; and background: transparent;...

It works on Chrome, IE(6 and later) and Mozilla(2 and later).

Margins are used (or meant anyways) to create a spacer between container elements, like <table>, <div> and <form>, not <tr>, <td>, <span> or <input>. Using it for anything other than container elements will keep you busy adjusting your website for future browser updates.

share|improve this answer
3  
OP never stated what was he using table for. – Alfabravo Oct 11 '12 at 15:24

I used !important after the border-collapse like

border-collapse: collapse !important;

and it works for me in IE7. It seems to override the cellspacing attribute.

share|improve this answer

protected by Mr. Alien May 8 at 6:43

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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