Hopefully this is an easy one but I have not found a solution. I want to put space between columns on a table.
Example
| Cell |<- space ->| Cell |
You could also consider using a series of fixed width divs floated left with margins. This might give you a bit more control over the element styling.
.row div { margin-right: 10px; float: left; width: 50px; } Cell One Cell Two Cell Three