I've got a weird situation where a content div I have defined is truncated in IE if it is longer than the browser window. In other words, if the page doesn't fit in the window, it gets truncated just prior to the border of the div.
.column-left
{
font-family:verdana,helvetica,arial;
color: #000;
float:left;
width:225px;
background-color:#9CCFC8;
position:absolute;
margin:0px 0px 0px 0px;
padding:15px 0px 15px 15px;
border: 3px solid #000;
}
.column-right
{
float:left;
font-family:verdana,helvetica,arial;
color: #000;
background-color:#9C9;
border: 3px solid #000;
margin-left:250px;
position:absolute;
text-align:left;
width:490px;
padding:10px;
}
.content-left is a navigation panel and .content-right is for content. If that content requires a vertical scroll bar, the page does not scroll enough to view the border at the bottom.