vue项目去掉网页滚动条

去掉滚动条前:
在这里插入图片描述
去掉后:
在这里插入图片描述

解决办法:
在App.vue里增加以下样式:
在这里插入图片描述

<style lang="scss">
::-webkit-scrollbar {
    
    
  width: 0 !important;
}
::-webkit-scrollbar {
    
    
  width: 0 !important;height: 0;
}
</style>

猜你喜欢

转载自blog.csdn.net/weixin_43550562/article/details/126506681
今日推荐