What i have now: Image
I know is that the height of brown div will be dynamic so i wanted make the other 3 divs (blue, gray and red) adjust/resize to brown div height automatically. Whats the best way to accomplish this?
Here is some of my code:
<div class="row">
{{--SCORES--}}
<div class="col-md-3" style="background-color: #2F96B4">
</div>
{{--BOARD--}}
<div class="col-md-4" style="background-color: #8a6d3b">
</div>
{{--PLAYERS AND SPECTATORS--}}
<div class="col-md-2" style="background-color: #666666">
</div>
{{--CHAT--}}
<div class="col-md-3">
</div>
</div>
Note: Yes, i'm using bootstrap to limit the width of divs.
Thank you.