Ionic 2 disable scroll

前端 未结 9 1166
暗喜
暗喜 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:44

    I solved same problem using css. (Ionıc 3.6)

    Step1: In ion-content add a new class :

    
    

    Step2: In your CSS add the code below :

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

提交回复
热议问题