I use the display properties table and table-cell to get equal heights on columns.
One way to control spacing between columns is to define border-collapse, but that doesn't allow for control per element-basis, the same spacing between all table-cell elements gets applied.
Is there any sort of trick to achieve the normal margin/padding effect on individual table-cell elements?
try to add
display:block;to child element of thetable-cell div...it will work.