this seem like such a common problem, and I've spend a few hours trying to figure this out online..
Situation:
- I have 2 divs: div_header, div_content
- Whatever vertical space div_header does not occupy, I need div_content to fill the remaining space, as the size of the browser changes
Code:
<html>
<head>
</head>
<body>
<div id = "div_header">
</div>
<div id="div_content">
</div>
</body>
</html>
Thanks guys.