1

当我尝试向下滚动时,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 中。但如果我这样做,内容会向左。有什么帮助吗?

4

1 回答 1

0

您的代码不完整<table id="container"...>,没有结束标签。对于您的代码,可能是某个事件中 html 组件的高度或宽度突然变化

于 2013-10-17T10:25:51.210 回答