Is there a way to make the height of my container fit the content in the left column, while allowing the right column to scroll if it overflows? Here is an example of what I am working with:
<div class="container">
<div class="row">
<div id="left-col" class="col-4">...</div>
<div id="right-col" class="col-8">...</div>
</div>
</div>
I would like the .row
div's height to adjust to the content in #left-col
, while allowing the content in #right-col
to scroll when necessary. Any suggestions on how to achieve this? Thank you!