I am using css with ionic . Using image in background but when i use image that maked background black.without image it looks fine.
ion-content {
--background: url("/assets/product_background.png") 0 0/100% 95% no-repeat;
--ion-background-color: linear-gradient(to bottom, #1a1240 35%,#6528af 70%,#736eed 100%);
}
With Background image
without background image
Just add all of your properties to the --background
value.
In your case:
--background: url("/assets/product_background.png") 0 0/100% 95% no-repeat, linear-gradient(to bottom, #1a1240 35%, #6528af 70%, #736eed 100%);
This will add your image and then include your gradient.