Oct
25
2007
overflow:auto not working in IE6?
If your overflow in IE is showing the scroll bar and showing the content that’s supposed to be hidden outside of the element, try adding the position:relative; style to the containing element.
.myElement{
height:300px;
overflow:auto;
position:relative;
}