我在网站的任何地方创建了一个没有滚动条的网站,并使用了代码
::-webkit-scrollbar {display: none; }
。
我需要显示特定div的滚动条。但是,滚动条不可见。
HERE是我的代码示例。我想要的只是滚动条在内盒中可见,而不是在其他地方。
提前致谢,伙计们!
答案 0 :(得分:0)
答案 1 :(得分:0)
*{margin:0 auto;padding:0px; }
html, body{ height:100%; width:100%;}
.big-box{
height: 100%;
background: orange;
}
.box{
width: 200px;
max-height: 200px;
overflow-y: scroll;
background: #ccc;
}