I would like to have two columns with separator border.
The task is quite simple when the columns have the same height.
But, if the heights of columns are different, and you don’t know a priori which is the higher column, (and I don’t want to use fixed value) how can I solve the problem?
The background color is the same.
A pure css solution is the best. If not possible, also a JavaScript code is acceptable.
You can set the display of the container to
tableand the left and right columns totable-cellThen you just need to wrap the left and right columns in the container and you have it.
Look Here