我知道有几个相同的问题与滚动条有一些好的答案,不幸的是,这对我不起作用。我想隐藏滚动条,留下滚动功能。这就是我所拥有的:
<div class="sidebar">
<div id="status"> </div>
<..li items etc >
</div><!-- END SIDEBAR -->
&#13;
我的CSS,
.sidebar {
overflow: hidden;
height: 90%;
}
.sidebar .#status {
overflow:scroll;
}
&#13;
答案 0 :(得分:0)
答案 1 :(得分:0)
您可以添加一个用于关闭滚动条的外弓。
.outer{
width:200px;
height:200px;
overflow:hidden;
}
.scrollbox{
width:260px;
height:200px;
overflow:scroll;
}
.inner{
width:190px;
}