I need div bottom to fill the remaining height of the PAGE, not a parent div
body, html {
  margin: 0px;
}
.top {
  background-color: green;
  width: 100px;
  height: 50px;
}
.bottom {
  background-color: red;
  width: 100px;
  height: 100%;
}<div class="top"></div>
<div class="bottom"></div> 
     
    