I am trying CSS filter but it does not work in my Firefox (15.0) browser.
HTML:
<div class="google">
<img src="https://www.google.com/images/srpr/logo3w.png">
</div>
CSS:
.google{
-moz-filter: grayscale(100%);
filter: grayscale(100%);
}
GrayScale has limitations to work in firefox using a -moz-filter.
To get it working use the below snippet:
DEMO