Forum Moderators: not2easy
I want to have the column that has my navigation buttons in it stretch all the way down. There is no footer to interfere with.
What I have is:
html, body {
height: 100%;
}
#navcol {
background-color:#333333;
top:142px;
left:0px;
position:absolute;
min-height: 100%;
height: 100%;
width:197px;
}
I've tried switching the position to relative if that would make any difference, and of course it doesn't. There is no container that the #navcol sits in. If anyone could help me out, I would appreciate it.
100% is 100% of the parent or the current viewport, whichever comes first.
Then again, absolute positioning pulls it out of the normal flow anyway.
Based on your code, the navigation div should begin 142 pixels from the top, and end 142 pixels below the fold, regardless of any other circumstances.