I want to set a div in html and set a second div with the remaining space..I guess this is simple, but I'm having a difficult to do that.
I want to set a div with a fixed height and make the second with the remaining space, something like that:
<div class="div1">1st</div>
<div class="div2">2nd</div>
CSS:
div.div1{background: #999; height: 78px;}
div.div2{ background: #666; height: (remaining_space); }
It's possible?