Is this possible via CSS? I'm trying tr.classname {border-spacing:5em} to no avail. Maybe I'm doing something wrong ?
|
1
|
|||||
|
|
|
You can't change the margin of a table cell. But you CAN change the padding. Change the padding of the TD, which will make the cell larger and push the text away from the side with the increased padding. If you have border lines, however, it still won't be exactly what you want. |
||
|
|
|
|
Have you tried:
Alternatively, each td can be adjusted as well:
or
|
||
|
|
|
|
Have you play with the Margin ?
|
||
|
|
|
|
In the parent table, try setting
Plus a border declaration, and see if this achieves your desired effect. Beware, though, that IE doesn't support the "separated borders" model. |
|||
|
|
|
|
You need to use padding on your td elements. Something like this should do the trick. CSS code. The greater than sign means that the padding is only applied to td elements that are direct children to tr elements with the class spaceUnder. This will make it possible to use nested tables. (Cell C and D in the example code.) I'm not too sure about browser support for the direct child selector (think IE 6), but it shouldn't break the code in any modern browsers.
HTML code:
This should render somewhat like this:
|
||
|
|
|
|
You can fill the <td/> elements with <div/> elements, and apply any margin to those divs that you like. For a visual space between the rows, you can use a repeating background image on the <tr/> element. (This was the solution I just used today, and it appears to work in both IE6 and FireFox 3, though I didn't test it any further.) Also, if you're averse to modifying your server code to put <div/>s inside the <td/>s, you can use jQuery (or something similar) to dynamically wrap the <td/> contents in a <div/>, enabling you to apply the CSS as desired. |
||
|
|

