Is it possible to create a div layout structured like this:
<div_wrapper>
<div_header>
</div_header>
<div_content>
</div_content>
</div_wrapper>
Upon page load, the div_header occupies 200px while the div_content fills the remaining vertical space. Additionally, as the browser changes sizes (e.g., user drags the corner of the browser), the div_header remains at 200px and the div_content dynamically adjusts its size accordingly.
Is this layout achievable? Thank you.