Div box almost from top to bottem.

I need to get a Div box to sit 120px from the top of my page to go right to the bottem of the page, no matter what the res or if they resize the page.
I have tryed a number of different methiods, but so far none of them work.

I cant cut and paste my code, or give you a web site(I am working from home, on different computers, and have no way to transfer my page onto this computer), but here is basicly what it is.

#Rightsidemenu {
postion:absolute;
top:120px;
left:80%;
width:20%;
}
.primary {
background image:url(...);
}

My html is just to call that up, so its nothing special (<div id="rightsidemenu" class="primary"> </div>)

If anyone can give me some help, it would really..... help :)

Wofenhave you tried something like this:


postion: absolute;
top: 10%;
height: 90%;


I would play around with stuff of that nature.
 
Back
Top