答案 0 :(得分:0)
您可以隐藏滚动条并使用
保持滚动\\webkit browsers
div::-webkit-scrollbar {display:none;}
\\Firefox
div{
scrollbar-width: none!important;
}
答案 1 :(得分:0)
在可滚动区域周围包裹一个容器。容器1是外部容器
.container1{
height: 100%;
width: 100%;
overflow: hidden;
}
.container2{
width: 100%;
height: 99%;
overflow: auto;
}