I was playing around with this gradient generator and noticed that in the filter property, they use a variation of the common place hexidecimal color code:

#00ffffff

to seemingly acheive an rgba effect: Permalink


I also saw this method mentioned here. Does this work in IE? What versions of IE support this?

I did see this question, but the answers never really mentioned if IE supports it. They just said it's invalid.

If IE does support this then it really makes no sense to use semi-transparent PNGs. Right?

link|improve this question

74% accept rate
feedback

1 Answer

The color code #00ffffff stands for 0x00 alpha, 0xFF red, 0xFF green and 0xFF blue. This basically means completely transparent white. MSDN has a nice description of this notation.

The #AARRGGBB notation is used by MSIE filters only, and should be supported by IE5.5+ within the (-ms-)filter functions. It's not a valid color expression in CSS, so cannot be used with color, background-color et al, not even in IE.

Indeed, the use of gradient filters is a common workaround for CSS3 rgba() and gradients for older versions of IE which don't support them. However, as filters often cause layout problems (which I shan't elaborate on), many including myself opt to use semi-transparent PNGs as background images instead.

link|improve this answer
I actually just learned about this yesterday, funny it should come up. I hate having to edit colors in Photoshop instead of a CSS file. What's a good resource for learning about the filter-related layout problems you mention? – Wesley Murch Mar 19 at 20:52
@Madmartigan: I don't have any resources, sadly - it was part hearsay and part personal experience. The "layout" I mention refers to hasLayout, so that could be an excellent search term to use. – BoltClock Mar 19 at 20:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.