Ionic 2 disable scroll

前端 未结 9 1178
暗喜
暗喜 2021-02-03 21:00

I\'ve tried several methods to disable scroll, including using CSS position: fixed, attribute overflow-scroll=\"false\" and etc, but all methods failed

9条回答
  •  遇见更好的自我
    2021-02-03 21:28

    The ion-content has a class called 'scroll-content'.

    With that in mind, go to your app.css, inside the src/app and add:


    app.css:

    .scroll-content{overflow-y: hidden;}
    

    That should leave your ion-content with no scroll, but I'd rather user:

    app.css:

    .scroll-content{overflow-y: auto;}
    

    since this allows the scroll-content only if the page content overflows the ion-content.

提交回复
热议问题