在this fiddle中,我有一个100%高度div,内容水平溢出。它可以在IE,Firefox和Chrome中按预期工作,但Opera会创建一个垂直滚动条来滚动水平滚动条覆盖的距离。有办法避免这种情况吗?
overflow-y:hidden
有点工作,但div仍在水平滚动条下面伸展。
<html><body><div id="filler"><div id="scroller"></div></div></body></html>
#filler{
position:absolute;
top:100px;
bottom:0;
width:100%;
overflow:auto;
}
#scroller{
height:100%;
width:2000px;
}