Your Ad Here

Posted By

misteroneill on 09/01/09


Tagged

image png transparency ie6 alpha background


Versions (?)

Who likes this?

5 people have marked this snippet as a favorite

vali29
secondtwo
rickfu
jannisg
nebojsac


CSS for IE6 PNG-24 Backgrounds


 / Published in: CSS
 

URL: http://www.misteroneill.com

This bit of CSS allows IE6 to render alpha-transparency in PNG-24 images. However, using Microsoft filters can dramatically degrade performance, so use sparingly and consider an alternative (non-tranparent) image for IE6 specifically.

  1. background:url('') no-repeat 0 0;
  2. _background-image:none;
  3. _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='',sizingMethod='scale');

Report this snippet  

Comments

RSS Icon Subscribe to comments
Posted By: secondtwo on September 1, 2009

good

You need to login to post a comment.