In addition to the existing answers, there is also viewport units vh
to use. Simple snippet below. Of course it can be used together with calc()
as well, e.g. min-height: calc(100vh - 200px);
when page header and footer have 200px
height together.
body {_x000D_
margin: 0;_x000D_
}_x000D_
_x000D_
.child {_x000D_
min-height: 100vh;_x000D_
background: pink;_x000D_
}
_x000D_
<div class="parent">_x000D_
<div class="child"></div>_x000D_
</div>
_x000D_