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?
|
In inline HTML, the
How would this be accomplished using a CSS stylesheet? |
||||
| show 1 more comment |
|
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. |
|||||||||||||||||||||
|
|
|||||||||||
|
|
DEFAULT:
CELLSPACING:
CELLPADDING:
BOTH:
BOTH SPECIAL:
Here you can find the old html way of achieving this. |
|||||||||||||
|
|
Setting margins on table cells doesn't really have any effect as far as I know. The true CSS equivalent for |
|||||||||
|
|
This hack works for IE6+, Chrome, Firefox, and Opera:
The
|
|||||||||
|
|
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.
|
|||
|
|
|
Also, if you want |
|||
|
|
|
The simple solution to this problem is:
|
|||
|
|
|
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 |
|||||
|
|
Just mentioning that |
|||
|
|
|
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,
And your HTML will be,
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. |
||||
|
|
|
From what I understand from the W3C classifications is that Based on that I found it a lot easier to create a 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 |
|||||
|
|
I used
and it works for me in IE7. It seems to override the cellspacing attribute. |
||||
|
|
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.
(724*10)-(3*3)or7,231rep from a single question.... – Cole Johnson Jan 29 at 20:12