0
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 to make the box extend to the end of the screen?
Note that I am not looking for an example footer!
Preferably without use of javascript
If I’m not mistaken Calc() is a css 3 resource
– leandroungari