Guys, help with advice on vertskom.
There is such a structure
<div class="container"> <div class="top-box">шапка. 200px</div> <div class="content-box">контент. ОСТАВШИЕСЯ 100% (screen height - 200px)</div> </div>
It is necessary to somehow force the browser to calculate 100% of the height of the .content-box not from the window size, but from the remaining height inside the .container, but because .container stretched to the full height of the window - then the height of the .content-box should be calculated screen (height) minus .top-box (height).
Is there a trick to do this?