Let's discuss a challenge I'm facing with div elements:
<div class="middle"></div>
On a daily basis, this particular div is populated with API data causing its height to vary.
In addition, there are these two other divs in the mix:
<div id="right" class="sideScoreDiv"></div>
<div id="left" class="sideScoreDiv"></div>
My goal is to have these side divs match the same height as the middle div. So far, setting the heights to 100% hasn't yielded results and neither has attempting overflow hiding. The challenge intensifies with dynamically generated divs involved in the mix.