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?
feedback
|
|
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 However, I say "almost" because these browsers still support the In short: for non-IE 5-7 browsers, Note: For a great overview of CSS properties that one can apply to tables and for which browsers, see this fantastic Quirksmode page. | |||||||||||||||||||||
feedback
|
|
Setting margins on table cells doesn't really have any effect as far as I know. The true CSS equivalent for | |||||||||
feedback
|
| |||||||
feedback
|
|
Also, if you want | |||
|
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 | |||||
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.
| |||
|
feedback
|
|
This hack works for IE6+, Chrome, Firefox, and Opera:
The
| ||||
|
feedback
|
|
The simple solution to this problem is:
| |||
|
feedback
|
|
Let's say you want 5 cellpadding and 10 cellspacing, do this: HTML
CSS
| |||||||||||
feedback
|