I encountered an issue with my webpage design. It has set dimensions with blue borders on the sides and bottom. The problem arises when I add Facebook comments to the page - as more comments are added, they extend beyond the bottom of the webpage, below the footer. This happens because the length of the webpage increases with each comment, causing them to overflow the defined boundaries. To resolve this, I attempted setting the height of the div to 'auto', but this resulted in the disappearance of my webpage borders. My question is, how can I make the webpage expand with the Facebook comments without losing the borders?
#bodywrap {
width: 910px;
border-left-width: 1px;
border-left-style: solid;
border-left-color: #9FD6E1;
border-right-width: 1px;
border-right-style: solid;
border-right-color: #9FD6E1;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #9FD6E1;
height: 2025px; /*if i set this to auto my borders disappear*/