Reputation: 1946
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
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