css实现滚动条并隐藏滚动条,兼容写法
2020-03-19 本文已影响0人
AAA前端
项目中遇到需要隐藏滚动条,但是能滚动。
.test{
overflow-y: auto;
scrollbar-width: none; // 火狐
-ms-overflow-style: none; // ie
&::-webkit-scrollbar { // webkit
display: none;
}
}
.test{
overflow-y: auto;
scrollbar-width: none; // 火狐
-ms-overflow-style: none; // ie
&::-webkit-scrollbar { // webkit
display: none;
}
}