Is it possible to add a white overlay to an image using a greyscale filter in CSS? I need the overlay to be absolute positioned over the image with a white background and changed opacity setting. The catch is that I cannot use another div, so it has to be done directly through CSS. It's just a simple image within an a tag:
<a href="#">
<img src="http://placehold.it/300x200" />
</a>
The CSS used is very basic:
a img {
display: block;
max-width: 100%;
height: auto;
}