I have this in my page:
<div class="container-fluid">
@Html.Partial("_SearchLeftSide")
@Html.Partial("_SearchRightSide")
</div>
First partial is this with some stuff in it:
<div class="col-sm-3" style="background-color: lightgray">
And second partial is this with some stuff in it:
<div class="col-sm-9">
The results side can be longer in height if we get many results, Is there a way to tell the search side ( left one ) to grow in height according to that?