Transparent PNG for IE6
30 Jan 2008I’ve been wrapping our web content in some new web designs, and one of the issues I have encountered is supporting transparent PNG on IE6. It can be done, and all it requires is a relatively unobtrusive hack that uses the IE-only “behavior” CSS attribute.
Stangely, though, while our web developer could serve pages that worked with this trick, when I implemented them on our own servers, it didn’t work! It took a while to realize that the problem wasn’t how I was implementing the hack (“check the URLs”, “are you line stripping the files?”, “make sure the files aren’t missing”) but rather from where I was serving the hack. Namely, from an old server running Apache.
IE6 would not execute the hack, which was bundled in an IE-only “behavior” file, with a .htc
extension. It would load it, I could see that in the logs, but it never did anything. The problem was that my old Apache wasn’t serving up the .htc
file with the mime-type that IE wanted on it.
So, one quick entry in /etc/mime.types
and an Apache restart later:
text/x-component htc
And we’re golden.