up vote 52 down vote favorite
4
share [g+] share [fb]

Is this possible via CSS? I'm trying tr.classname {border-spacing:5em} to no avail. Maybe I'm doing something wrong ?

link|improve this question

73% accept rate
What is the browser and can you provide a snippet of your code (html/css)? – Daok Dec 8 '08 at 21:54
well i'm using ff3 as i know that ie supposedly supports Rules but for now i'm looking to fix in ff3. i tried spacing and padding thus far no luck. productlistingitem is the main table <table class="productListingItem" border="0" cellpadding="10" cellspacing="0"><tr> <tr><td class="dragItem" > – Marin Dec 8 '08 at 22:31
feedback

14 Answers

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.

/* Apply padding to td elements that are direct children of the tr element. */
tr.spaceUnder > td
{
  padding-bottom: 1em;
}

HTML code:

<table>
  <tbody>
    <tr>
      <td>A</td>
      <td>B</td>
    </tr>
    <tr class="spaceUnder">
      <td>C</td>
      <td>D</td>
    </tr>
    <tr>
      <td>E</td>
      <td>F</td>
    </tr>
  </tbody>
</table>

This should render somewhat like this:

+---+---+
| A | B |
+---+---+
| C | D |
|   |   |
+---+---+
| E | F |
+---+---+
link|improve this answer
Had the same problem. This solution works. – codeape May 5 '10 at 12:35
code.google.com/p/ie7-js adds support to child selector in ie5.5, ie6, ie7 as well – Antony Hatchkins Jan 27 at 17:16
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.

link|improve this answer
feedback

In the parent table, try setting

border-collapse:separate; 
border-spacing:5em;

Plus a border declaration, and see if this achieves your desired effect. Beware, though, that IE doesn't support the "separated borders" model.

link|improve this answer
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:

<tr class="spacer"><td></td></tr>

then use css to give the spacer rows a certain height and transparent background.

link|improve this answer
This is probably more flexible, I would think. You can't always control when in advance you'll need space (dynamically generated pages). – Stefan Kendall Nov 2 '10 at 17:16
feedback

You have table with id albums with any data...I have omitted the trs and tds

<table id="albums" cellspacing="0px">

</table>

In the css

table#albums 
{
    border-collapse:separate;
    border-spacing:0 5px;
}
link|improve this answer
2  
this worked well for me. the border-spacing's first argument is the horizontal spacing between the cells, and the second is the vertical spacing. – user82646 Feb 26 '11 at 9:14
feedback

Ok, you can do

tr.classname td {background-color:red; border-bottom: 5em solid white}

Make sure the background color is set on the td rather than the row. This should work across most browsers... (Chrome, ie & ff tested)

link|improve this answer
feedback
tr { 
    display: block;
    margin-bottom: 5px;
}
link|improve this answer
Does nothing in IE9. – Stijn Nov 2 '11 at 15:40
i'd preffer display: inline-block; – DS_web_developer Jan 28 at 8:00
feedback

You may try to add separator row:

html:

<tr class="separator" />

css:

table tr.separator { height: 10px; }
link|improve this answer
feedback

A too late answer :)

If you apply float to tr elements, you can space between two rows with margin attribute.

table tr{
float: left
width: 100%;
}

tr.classname {
margin-bottom:5px;
}
link|improve this answer
worked perfectly for me :) – Maxime ARNSTAMM Jan 19 '11 at 15:57
3  
That's scary. What this is actually doing is setting the display property to block for the row. This allows the row to have a margin. Vertical margin "Applies to: all elements except those with table display types other than table-caption, table, and inline-table". Since table-row isn't any of those exceptions, then it doesn't count it. You could probably achieve the same effect by doing tr {display:block;} But I would be wary of using either of these methods in a complicated table. It will likely not result in what you expect. – sholsinger Mar 24 '11 at 16:46
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.

link|improve this answer
feedback

Or just add a blank with the height of the margin in between the rows you would like to add the spacing

link|improve this answer
feedback

I wrote a blog entry about this issue check it out http://ifthikhan.posterous.com/spacing-between-table-rows

link|improve this answer
feedback

doing this shown above...

table tr{ float: left width: 100%; }  tr.classname { margin-bottom:5px; } 

removes vertical column alignment so be careful how you use it

link|improve this answer
feedback

Have you tried:

tr.classname { margin-bottom:5em; }

Alternatively, each td can be adjusted as well:

td.classname { margin-bottom:5em; }

or

 td.classname { padding-bottom:5em; }
link|improve this answer
Does this actually work? I have div.el { display: table-row; margin: 10px; }, and margin doesn't do anything. I know it's a little different than an actual table, but it shouldn't be... – bradlis7 Jun 26 '10 at 19:36
3  
Table rows/cells does not have margins. – Espen Mar 3 '11 at 8:53
feedback

Your Answer

 
or
required, but never shown

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