Hello,
I am using the following method in CSS to make a PNG image transparency preserved:
This works fine in Firefox, Chrome but not in IE8. I have also adaded behavior to the css file in the body rule which is as follows:
and added necessary files i.e. blank.gif and iepngfx.htc which is working in other browsers except IE8. please tell me wat i can do to have my image transparent in IE8.
Thanking you.
}
I am using the following method in CSS to make a PNG image transparency preserved:
Code:
opacity:0.5; filter:alpha(opacity=50);
Code:
body{
div, img{
behavior: url(images/iepngfix.htc);
}
Thanking you.
}
Comment