uniapp中去除scroll-view组件默认的滚动条

1,383 阅读1分钟

uniapp中我们使用scroll-view实现横向或者竖向滑动时,我们会发现横向或者竖向是有一个滚动条的,不是很美观,我们想去除滚动条。

通过css的-webkit-scrollbar属性隐藏滚动条

scroll-view ::-webkit-scrollbar{
    display: none;
    width: 0 !important;
    height: 0 !important;
    -webkit-appearance: none;
    background: transparent;
}