How can I disable or hide the scrollbar within an Ionic 2

前端 未结 9 1483
轻奢々
轻奢々 2020-12-03 10:02

I have an Angular 2 app wrapped in Ionic 2. I\'m using , and within each tab is an . The content in this area ne

9条回答
  •  一生所求
    2020-12-03 10:43

    Add this css into your styles,

    I fetched this class from inspect element which contains scrollbar and items

    ion-scroll.scroll-y .scroll-content::-webkit-scrollbar{
      display: none;
    }
    

    worked for me

提交回复
热议问题