hello
what is recommended size for background image in ionic 2
Depends on what you’re trying to achieve and where the background-image should be applied to?
1 Like
i want to put image cover all background
Then the best thing is to add a background-image to your ion-content like this:
ion-content {
background-image: url('assets/images/mybackgroundimage.jpg');
background-size: cover;
}