I'm struggling with the following. My index page is made out of 3 divisions. A header div (not showing on the screenshot), a menu div (left-side on the screenshot) and a content container div (right-side on the screenshot).
As you can see, the menu divs background doesn't fill the height of the screen vertically. This is my code of the menu div. The div also contains a list but I don't think this is necessary to fix this.
#menucontainer {
float:left;
width:200px;
background-color:#dddddd;
position:absolute;
height:100%;
overflow:hidden;
}
Could someone please help me with what I am doing wrong. I think its just a little thing but I can't find it.
Thanks!