vote up 3 vote down star

Should I use PNG transparency or CSS transparency?

My first instinct is to go with CSS. However I heard somewhere that the filter in IE is slow and that I would get better results with PNG (ignoring IE6).

However from personal experience I know that PNG transparency is slow in FF3.

Is there a definite answer to this?

Thanks.

flag

3 Answers

vote up 6 vote down check

They're two different solutions to two different problems. CSS transparency (I assume you're referring to the opacity property) will make an entire element (its border, background and content) transparent, whereas alpha PNG transparency is only useful in situations where you'd use images, for example an elements background.

I cant think of many situations where you could use either to the same effect.

There are of course RGBA colours in CSS3, however browser support is currently too low for it to be a viable option in public facing sites/applications.

P.S. I can't say I've run into any FF3 alpha PNG performance issues myself.


Follow-up to comment:

OK. In that case I'd go for the CSS opacity property.

Although the filters performance may not be optimal in IE6, it means you don't have to waste bandwidth and an additional HTTP request on an image. Plus, if you wanted to get the image to work in IE6 as well you'd have to use AlphaImageLoader, which I'm sure would be just as slow (if not slower) than the alpha filter.

link|flag
I'm putting a transparent overlay on some elements, and in this case setting the overlay element background image or opacity setting will work. My question refers to the speed of either solution in most browsers. Thanks. – Roger Feb 14 at 20:54
Reply in answer (was too long). – Jack Sleight Feb 14 at 20:59
The speed I'm talking about is render speed, not loading speed, which in my situation is much less important. When scrolling or displaying (IE, using JS to hide/show), is it true that PNG performs better than opacity filter in IE7. If I had to, I would use a different css for class for IE/FF. – Roger Feb 14 at 21:29
I cant say I have any benchmarks or definite proof that one is faster than the other I'm afraid. All I can say is that all logic suggests (in my mind :-) ) that opacity should perform better than an alpha PNG image, as (I assume), there's less overhead. – Jack Sleight Feb 14 at 21:50
vote up 1 vote down

PNG transparency can do things CSS can't -- PNG alpha channel transparency can have different degrees of partial transparency for different parts of the image, while CSS opacity can't do that.

link|flag
vote up 1 vote down

I just did a quick non-scientific test in Firefox 3.0.11 on the mac.

My test was to overlay a div and scroll up and down repeatedly.

One used css:

background: #000; opacity:0.8;

The other used a 10px 24bit PNG of the same.

I measured the following results with Activity monitor (so guessing,not exact)

Firefox 3.0.11

CSS opacity: approximately 60% cpu usage.

PNG: approximately 20% cpu usage.

Safari 4.0:

CSS opacity: approximately 80% (with peaks of 120%!)

PNG: approximately 76% (with no peaks at all)

So as far as performance goes, it seems like a PNG is the winner.

link|flag

Your Answer

Get an OpenID
or

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