I am working on creating two side by side DIVs, where one contains static content and the other has dynamic content. My goal is to make sure that the height of the static DIV increases whenever the height of the dynamic DIV increases.
Here's the code I have implemented so far:
<div class="row">
<div class="col-sm-2">abc(STATIC CONTENT)</div>
<div class="col-sm-10"> DYNAMIC CONTENT</div>
</div>