我在左侧有固定的侧边栏,在顶部有固定的标题。在IE浏览器中,页面滚动工作正常,但是单击“加载更多”选项后。该页面在滚动时闪烁
为解决闪烁的问题,我还添加了一些CSS位置
html, body {
-ms-overflow-style: scrollbar;
}
.header {
width: 100%;
position: absolute;
top: 0;
right: 0;
left: 16.66%;
transform: translate(0,0);
}
.side-bar {
height: 100%;
position:fixed;
left:0;
top:0;
width: 16.6%;
}