I have structured my webpage with three different divs. The left one is defined with col-md-2
, the middle one with col-md-8
, and the remaining right div with col-md-2
. I want the right div to take up 100% of the screen height, even when no controls are present. I have tried setting both height and min-height to 100%, but it doesn't seem to be working. Here is a snippet of my code. Can anyone advise me on how to resolve this issue?
<div id="propertiesContainer" class="row col-md-2" style="border:solid 1px;padding-left:unset;padding-right:unset;min-height: 100%;height:100%;"></div>