IE5.5+ has supported the CSS attribute "filter" where you convert a color image into grayscale using just CSS.

filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);

Do other browsers support a similar CSS tag without using JavaScript?

link|improve this question
feedback

4 Answers

up vote -1 down vote accepted

You can check out: http://snipplr.com/view/2836/grayscale-img-with-css-crossbrowser/

I hope it helps. I would still recommend using server-side for image manipulation, or Photoshop.

link|improve this answer
Great alternative. – Hank892 May 18 '09 at 17:14
1  
That does not appear to actually work. The image is covered by a 20% grey box, but the colors are still present, just slightly muted. – Ben Blank May 18 '09 at 17:22
1  
I wanted to delete this post after I tested it. But he accepted it too quickly. And now I suffer from down votes. Oh well. – meep May 19 '09 at 6:40
feedback

No. Filters are tied to ActiveX.

One example of how to achieve greyscaling in other browsers, but it does use JavaScript.

link|improve this answer
Thanks for the ActiveX clarification – Dylan Valade Apr 9 at 15:35
feedback

No they do not. Realistically you shouldn't be using those in cross-browser web development unless it is to make IE work in ways the other browsers don't. The obvious example is PNG support.

link|improve this answer
feedback

I'm pretty sure Opera supports some of the MS stuff. Haven't been able to find out exactly what parts they do support.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown