I bring here drama with css height.
I would like to make a layout, a div that contains 2 divs in one row, one resizes and the other has to match the parent height (same height as the first).
The first div may have additional information (therefore, I cannot fix the height ), so it will have more lines, it is important that it does not have a scrollbar. The second div must obey the first height if it is larger than it will have a scrollbar.

<div class='container'> <div class='left'> </div> <div class='right'> </div> </div>
UNSOLVED CODE
The problem is that I cannot figure out how to do this simply using css. Or even this is only possible with css. I would not like to use js.
Someone please help me!
source share