P.S. I did a lot of research and I found a lot of scripts that show how to display the PNG in IE using a filter but I can't get any of them to work properly so I feel that using GIF alternatives would be an easier method.
It may be easier, but it wouldn't be as good. You'd have to resort to "downlevel-revealed" conditional comments at best, which would render your page invalid.
If you can get one of those filter hacks working, it's best to do so:
Code:
<!-- Head: -->
<!--[if IE]><style type="text/css">
#alphaImage1 {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='firstAlphaImage.png', sizingMethod='scale');
}
</style><[endif]-->
<style type="text/css">
#alphaImage1 {
height: 100px;
width: 100px;
background-image: url(firstAlphaImage.png) !important;
background-image: none;
}
</style>
<!-- Body: -->
<div id="alphaImage1"></div>
/EDIT: From that link, LOL.
Bookmarks