PDA

View Full Version : Scroll bar flickers when the page is loading(IE7)



mnsanthoshkumar
06 Sep 2009, 10:48 PM
Hi,

I have this strange issuewhich is only happening in IE7. When the page loads, the scroll bars begin to flicker. It stops after the page loads completely. And if the page is loading after an ajax request, it scroll bars keep flickering even after ajax response is completed. Please let me know if anyone has any answers to this issue.

The HTML is as follows:



<div id="db-overlay-popup-box" class="overlay-popup-box">
<div id="database-list-popup"><form>....</form></div></div>


The CSS used for the div elements is given below.



#db-overlay-popup-box {
min-height: 200px;
height: 400px;
position: absolute;
width: 40%;
margin-left: 30%;
top: 15em;
border: 2px solid #3282b6;
z-index: 999;
padding: 10px;
background-color: #fff;
}

#databaselist-databases {
list-style-type : none;
clear: both;
overflow: auto;
position: absolute;
width: 90%;
margin-left: 1em;
padding-left: 1em;
right: 1em;
white-space: nowrap;
}

.overlay-popup-box {
position: absolute;
z-index: 999;
width: 40%;
margin-left: 30%;
border: 2px solid #3282b6;
padding: 10px;
background-color: #fff;
}