Let's say you have defined an image as the background of a div as follows:
#div {
background: #111111 url(../imagens/imagem1.jpg) top center;
background-size: cover;
How do I change the properties of this image, for example:
filter: grayscale(100%);
opacity: 0.2;
Is it possible to make these changes only in the image? Because if you add those lines along with the other part code, the changes will be made across the Div, and that's not what I want.