user1083320
user1083320

Reputation: 1946

Only adding cell-spacing

I want to add cell-spacing (only spacing between the tr, and NOT the td) in CSS. I cannot figure this out!!!

I thought I could do this

 table
 {
      cell-spacing: 10px;
 }

but this adds spacing between the td as well!

Thanks

Upvotes: 0

Views: 113

Answers (1)

BoltClock
BoltClock

Reputation: 723568

cell-spacing is incorrect; the property you're looking for is border-spacing.

You can specify two values, one for horizontal spacing and one for vertical spacing respectively.

Try this:

table
{
    border-spacing: 0 10px;
}

Upvotes: 4

Related Questions