I have a little problem getting everything to work right on my website using Internet Explorer. One of my problems: I have a div that has one overflow:auto.
As soon as I make my window small enough so that the overflow can affect, the div for some reason shrinks a bit. Does anyone know why this would be?
Pagewidth:100% . Pay attention to the red frame on the left and right.

Page times overflow:autoaffects - the red border div is compressed

Red Border Div
.content {
width:100%;
background-color:#F1F2F7;
position: absolute;
padding:0 0 120px 0;
z-index:2;
overflow:auto;
height:100%;
border:1px solid red;
}
source
share