I am going to add filter to background image. And I am confused about how to add the filter effect to background image.
Here is the code,
body {
background-image:url(../images/background.jpg);
background-repeat: no-repeat;
background-size:cover;
}
body, html {
min-height:100%;
}
I try to add filters: brightness(2);
inside the body, but nothing happen...
What i want to do is that keep the full-size background and then add the filter effect to the background image. Anyone can help?
Millions thanks!!!!!!!