vote up 5 vote down star
1

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?

flag

75% accept rate

5 Answers

vote up 9 vote down

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|flag
vote up 7 vote down

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

link|flag
vote up 5 vote down

Simply apply

padding:

and

margin:

css properties to individual components of the table, th, tr, td etc. as you see fit...

link|flag
ps. This is the recommended way of doing things, cellpadding and cellspacing are deprecated – adam Dec 4 '08 at 8:51
Use border-spacing, not margins. Margins don't work. Cellspacing and cellpadding are presentational and should be deprecated, but aren't: w3.org/TR/html4/index/attributes.html – David Dorward Jul 15 at 12:59
That's true. Also border-collapse:collapse is often a useful one. Also, I meant cellspacing and cellpadding are deprecated in XHTML 1.1. – adam Nov 19 at 9:46
vote up 1 vote down

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|flag
Interesting what in this solution we have to set сellpadding and cellspacing attributes to zero anyway. :) – Alexander Prokofyev Dec 10 '08 at 14:13
Don't hate the player, hate the game – Andrew G. Johnson Dec 10 '08 at 17:05
1  
No. Margins around table data cells are not how you set cellspacing. See other answers. – David Dorward Jul 15 at 12:58
vote up 1 vote down

table {
border-collapse: collapse; // 'cellspacing' equivalent
}
table td,
table th {
padding: 0; // 'cellpadding' equivalent
}

link|flag

Your Answer

Get an OpenID
or

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