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

前端 未结 9 1488
轻奢々
轻奢々 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:32

    You can override the scroll-content style in your .scss file.

    // scroll-content is a class
    .scroll-content {
        overflow-y: auto;
    }
    

    or better still you can set overflow-y: hidden;

提交回复
热议问题