I am having a strange problem with CSS 100% height. The site of my site is as follows:
<html>
<body>
<div id="container">
<div id="header"></div>
<div id="content"></div>
</div>
</body>
</html>
I am trying to get container to have a minimum height of 100% so my CSS is as follows:
html { min-height: 100%; }
body { height: 100%; }
#container { height: 100%; }
The problem is, #container does not fill 100% of the height and only expands according to how much content is in #header and #content, and if #header and #content are empty or removed, #container does not expand at all.
I feel like I have to be overlooking something very simple, but have been looking at this forever and am at a dead end! Can someone point out the problem?