I am looking to ensure that my children's div occupies the remaining space on the screen and prevent scrolling. Since I am utilizing PanZoom, I need the children's div to always fill 100% of the screen.
<div class="parent">
<menu> ... </menu>
<div class="children">
<panzoom></panzoom> //the image can change size, height etc.
</div>
</div>
I attempted to achieve this by using the following CSS:
.children {
height : 100%
}
Unfortunately, when using PanZoom, the div becomes larger and triggers scrollbars to appear.