Css here...
background-image: url("image/login-background-image.png");
background-repeat: no-repeat;
background-size: cover;
I want background-color up-side of background-image.
Css here...
background-image: url("image/login-background-image.png");
background-repeat: no-repeat;
background-size: cover;
I want background-color up-side of background-image.
Do you mean something like this?
Works on all major browsers - tested on chrome, ie, firefox and edge.
body {
background-image:
linear-gradient(rgba(46, 49, 65, 0.8), rgba(46, 49, 65, 0.8)),
url("https://images.freeimages.com/images/large-previews/647/snowy-mountain-1378865.jpg");
width:100%;
height:100%;
}
Hope the below CSS works for you...
background: #ff0000 url("image/login-background-image.png");
If not, Kindly share the expected output and both HTML and CSS