I have a card-panel div
with background image, I want to use a filter(sepia) ONLY on the background image(it paints everything inside the div).
How to enter the background-image properties?
.card-panel {
background-image: url("../img/d1f71749f.jpg");
position: relative;
filter: sepia(50%);
}
/* something like this:
.card-panel background-image {
filter: sepia(50%);
}
*/