I want to create a messenger like grid layout using bootstrap 4
my html is like the following
`<div class="container-fluid">
<div class="row">
<div class="col-md-3">here is a ul of list of contacts</div>
<div class="col-md-9 ml-auto">msgs display here</div>
<div class="col-md-9 fixed-bottom ml-auto">textarea here</div>
</div>
</div>`
I want the msgs display here div
to start from top of the page till it reaches the text area div
problem is, it always has the same height like the first .col-md-3
.
How do i make the height of the middle div .col-md-9
independent of the left one? And ofcourse keeping it responsive.
Cheers,