I have the problem with my background-image on my website (React.js). I want to darken the background-image and this darkening does not work. I tried Darken CSS background image? and this doesn't work. I am testing in the newest version of Google Chrome browser. Here is my code:
* {
margin: 0;
padding: 0;
}
body{
background: url("images/background.jpg");
}
header{
position: absolute;
width: 100%;
height: 5vh;
}
ul{
position: absolute;
display: inline-block;
left: 10vw;
top: 2vh;
list-style-type: none;
}
.link{
text-decoration: none;
color: white;
}