How to stretch an element to the bottom of the page taking into account the position it is in?
ex:
<div class="caixa1">CAIXA 1</div>
<div class="caixa2">CAIXA 2</div>
.caixa1{background-color: red;}
.caixa2{background-color: blue;}
How do I make Box2 stretch to the end of the screen?
Note that I'm not looking for an example footer!
Preferably without javascript