I have this div:
<div class="middle"></div>
It's filled with API data daily and every day its height changes.
I have these other divs:
<div id="right" class="sideScoreDiv"></div>
<div id="left" class="sideScoreDiv"></div>
I want to these this div equal to the height of the middle div, how would I do this? I have tried setting the heights to 100% but that hasn't worked for me. I have also tried other suggested ways like hiding overflows but could not find anything on dynamically created divs.