CSS DIV/Wrapper Question

Hi, I have successfully positioned all my DIVS in a wrapper. The thing if I enter content into a DIV box. The wrapper doesnt increase accordingly. I wish for the wrapper to automatically expand in height when text is entered into one of my contained DIVS. Any help? Thanks! =)

Code :

#wrapper
{
position:absolute;
width: 860px;
height: 500px;
background-color: #FFFFFF;
top: 0px;
right: 10px;
left: 77px;
}

#logo
{
position:relative;
width:205px;
height:55px;
left:52px;
top:33px;
}

#menu
{
position:absolute;
width:479px;
height:55px;
left:52px;
top:103px;
}

ETC…