当我尝试向下滚动时,IE8 屏幕闪烁。它在 Mozilla 和 Chrome 中运行良好。只有用IE它会闪烁。我的 JSP 结构。
<body>
<div id="pContainer">
<div id="gContainer" class="gFix">
<table...>
<tr class="header">
<td....>
...
</td>
</tr>
<tr class="bContent"..>
<td>
...
<tr>
...
</tr>
...
</table>
</div>
</div>
<div class="wContent">
<table id="container"...>
...
</table>
<div id="lghtbtn"></div>
</div>
</body>
css
html, body {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
padding: 0;
background-color: #fefefe;
font-size: 13px;
font-style: normal;
font-weight: normal;
font-family: Verdana, "Trebuchet MS", Arial, sans-serif;
}
#pContainer {
width: 100%;
height: 100%;
margin: 0 auto;
position: static;
}
#gContainer {
width: 1002px;
float: inherit;
margin: 0 auto;
position: inherit;
max-width: 1024px;
}
.container {
height:80px;
overflow:scroll;
border:1px solid #CCC;
}
#bContent {
top: 111px;
left: 0px;
width: 97%;
clear: both;
float: inherit;
margin: 0 auto;
display: block;
position: inherit;
min-height: 481px;
/*background-color: #efefef;*/
}
pContainer 是完整的页面。gContainer 是标题,正文部分包含具有字段网格等的正文内容,我尝试给出位置:固定在各种 div 中。但如果我这样做,内容会向左。有什么帮助吗?