I have the following sections in my layout: 1) Header, 2) Left Panel, 3) Middle Div1, 4) Middle Div2, and 5) Right Div
<div id="HEADER">
</div>
<div id="LEFT_PANEL">
</div>
<div id="DIV1_mid">
</div>
<div id="DIV2_mid">
some dynamic content
</div>
<div id="RIGHT_PANEL">
The left panel has a fixed height. The content in middle_div2 displays correctly until it reaches the height of the left panel. When the content exceeds this height, it sticks to the left side of the page below the left panel. How can I make the content in middle_div2 scrollable? Please assist me in resolving this issue!