Background image is not working on IOS for Ionic 3

Hi,
Background image is not working on IOS for Ionic 3, but it works for android and web.
And i am using selector (page-language-setting) ex:
page-language-setting {background-image:url(…/assets/imgs/languagepg-bg.png) !important; background-repeat: no-repeat; background-position: 0 0; background-size: 100% 100%; background-color: transparent !important;}
— not working for me. white background is displaying and when going to next page then just little time background is coming and then go off.

and also use –
ion-content padding class=“getstart” and then use–
.getstart{
background-image:url(’…/assets/img/home-page-bg.jpg’);
background-repeat: no-repeat;
background-size: 100% 100%;
background-color: #45372E;
}
and it’s works but header and footer are not covered.
So please suggest me any solution so that i can use full page background covered image.

use
background-image:url('/assets/img/home-page-bg.jpg’);

I already used that but not working in ios

page-language-setting {background-image:url(…/assets/imgs/languagepg-bg.png) !important; background-repeat: no-repeat; background-position: 0 0; background-size: 100% 100%; background-color: transparent !important;}

Hi,
try to set CSS background for .scroll-content element. Not for page element.

check the path. You are using ../assets
When I use ionic on IOS, it’s always assets/ not ../assets/

Not working as well.
Actually, i hope image is there but not displaying in ios when i am using.–
page-language-setting {background-image:url(…/assets/imgs/languagepg-bg.png) !important; background-repeat: no-repeat; background-position: 0 0; background-size: 100% 100%; background-color: transparent !important;}

Does it display on the web when you do ionic serve?

yes, its working for web and android.