I am using Ionic 4
. On my Login Page whenever keyboard is pressed, background image scrolls up. I found no workaround until now.
I applied below css
to ion-content
:
ion-content{
--background: #fff url('/assets/img/bigscren.jpg') no-repeat center center / cover !important;
--background-size: cover !important;
--background-attachment: fixed;
}
This is my front page:
<ion-content padding>
//My Content
</ion-content>
I also applied fixed
attribute to ion-content
(from latest ionic doc) but that also not working.
Please help me out. Thanks!