Is this possible via CSS? I'm trying tr.classname {border-spacing:5em} to no avail. Maybe I'm doing something wrong ?
feedback
|
|
You need to use padding on your td elements. Something like this should do the trick. You can, of course, get the same result using a top padding instead of a bottom padding. 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:
| |||||
feedback
|
|
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. | |||
|
feedback
|
|
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. | ||||
|
feedback
|
|
since I have a background image behind the table, faking it with white padding wouldn't work. I opted to put an empty row in-between each row of content:
then use css to give the spacer rows a certain height and transparent background. | |||
feedback
|
|
You have table with id albums with any data...I have omitted the trs and tds
In the css
| |||||
feedback
|
|
Ok, you can do
Make sure the background color is set on the td rather than the row. This should work across most browsers... (Chrome, ie & ff tested) | |||
|
feedback
|
| |||||
|
feedback
|
|
You may try to add separator row: html:
css:
| |||
|
feedback
|
|
A too late answer :) If you apply float to
| |||||||
feedback
|
|
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. | |||
|
feedback
|
|
Or just add a blank with the height of the margin in between the rows you would like to add the spacing | |||
|
feedback
|
|
I wrote a blog entry about this issue check it out http://ifthikhan.posterous.com/spacing-between-table-rows | |||
|
feedback
|
|
doing this shown above...
removes vertical column alignment so be careful how you use it | ||||
|
feedback
|
|
Have you tried:
Alternatively, each td can be adjusted as well:
or
| |||||||
feedback
|