I have the following CSS that I use to vertically center a DIV on a page (and horizontally center it as well). If the height of the browser window is less than 600px, I would like the window to be able to scroll to show the entire DIV. However, the DIV just centers itself on the page and anything beyond the height of the browser is hidden--no scroll bars. Is there any way to allow the user to scroll to these now hidden regions?\[code\]#container{ width:800px; height:600px; position:absolute; margin-top:-300px; top:50%; margin-left:-400px; left:50%;}\[/code\]