I have two divs. These two divs are orientated as two vertical columns next to each other. Instead of pre-determining the height of the divs via css I want to have it grow dynamically with the content I put into it. Which is simple enough for one div but my problem is that I want the div on the left with background color green to grow to the same height of the div on the right . There is always going to be more content in the right than in left.
Share
Assuming the elements are after
body. Give 100% to the body, and all the divIf they are not, then you have to either fix the height of the parent or chain
100%height all the way to the body again.