如何删除滚动 bar/stick 指示器?
how to remove the scroll bar/stick indicator?
如何 remove/hide ionic 3
中的滚动条指示器(滚动时显示的垂直杆)
我试过了:不确定下面的代码是做什么的
.scroll-content {
overflow-y: auto !important;
}
试试这个:
::-webkit-scrollbar {
display: none;
}
::-webkit-scrollbar 仅在基于 WebKit 的浏览器中可用(例如,Google Chrome)。
如何 remove/hide ionic 3
我试过了:不确定下面的代码是做什么的
.scroll-content {
overflow-y: auto !important;
}
试试这个:
::-webkit-scrollbar {
display: none;
}
::-webkit-scrollbar 仅在基于 WebKit 的浏览器中可用(例如,Google Chrome)。