On my webpage, I currently have the following code:
<div class="container-fluid">
@Html.Partial("_SearchLeftSide")
@Html.Partial("_SearchRightSide")
</div>
The first partial contains the following content:
<div class="col-sm-3" style="background-color: lightgray">
And the second partial contains the following content:
<div class="col-sm-9">
If the results side ends up being longer in height due to many results, is there a way to make the search side (left one) adjust its height accordingly?