What do you think about IE? Yes, it's a very cool browser. There is PNG24 with a transparent area. I have applied the jquery opacity to it like:
$(".selector").css("opacity", 0.4);
and got the following problem:
How can I fix it?
What do you think about IE? Yes, it's a very cool browser. There is PNG24 with a transparent area. I have applied the jquery opacity to it like:
$(".selector").css("opacity", 0.4);
and got the following problem:
How can I fix it?
try to use this
.selector
{
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* IE8 */
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); /* IE7 */
}