Help With CSS Div Height

I was wondering if anybody could help me out. I have a container div with a 2px high bg image. Inside this container div I have a few more divs. The problem is, the bg image from the container is not expanding. If I put a paragraph tag in there it works but other divs will not expand the container divs.

Here is my css:

#container {
width:795px;
height:auto;
margin:0 auto;
background:url(images/bg_container.png);
}

When I put other div’s in this container div, I wanted it to expand the height of the container div.

Please help!

JT