How to put a dark opacity only in the background image? Below is the CSS
code
.loginPage{
background:url('../../assets/icon/backgroundlogin') no-repeat center;
background-size:cover;
background-color:rgba(0,0,0,.5);
}
And here, my html
code
<ion-content padding class="loginPage">
// Here is my content
</ion-content>