The div structure is -
<div class="parent">
<div class="left float-start"></div>
<div class="right float-end overflow-y"></div>
<div>
Now,
For the left child -
- the height should be based on dynamic content
- displayed entirely with no overflow scroll
For the right child -
- height is also based on dynamic content but
- max height should be the height of the left child
- set to overflow-y scroll and so it's never longer than the left child but can be shorter
How do i do this only using css?
Any help would be appreciated!!