I need assistance with creating a dynamic div height based on the content length of another div.
For instance, when DIV A contains certain information and DIV B displays feedback related to DIV A. If DIV B has more content than DIV A, I want DIV A to remain a fixed height with a scroll option instead of expanding endlessly.
<div class="A col-md-9">
content
</div>
<div class="B col-md-3">
feedback content
</div>