I have 2 divs as display: table-cell
. I need a space between them.
margin-left: 5px
for the second div does not work.
I already saw the Why is a div with "display: table-cell;" not affected by margin? answer, but my question is not about how to have a border around a cell, but a LEFT MARGIN (and not padding!) for a concrete cell (the right one)
setting the green div as
display: table;
border-collapse: separate;
border-spacing: 10px;
makes the space not only between cells, but also all around cells, that is NOK...
How to proceed?
JSFiddle: http://jsfiddle.net/9cw7rhpu/