Gentlemen, there is such a markup:
<div id="container"> <div id="first"></div> <div id="second"></div> </div>
I want to do something like this:
<style> #container { height: 600px; } #first { height: 60px; } #second { height: /*все остальное*/ } </style>
So, is there a way in CSS to set the height of the second block as the difference in height between the container and the first block? At least if the height of the first block is fixed.