
Originally Posted by
ItsMeOnly
IE 7 finally has support for alpha-blending in RGBA PNGs (it has , however, some personality problems- old workarounds will not work any longer- breaking the layout horribly, while standard complance is still out the window)
Well, you mean IE 7 beta. Hopefully backward compliance will be achieved with IE 6 before final release. If not, most likely the use of IE version specific comments will provide a workaround, ex:
Code:
<!--[if lte IE 6]>
HTML level code (tagged scripts are included) for IE 6 and earlier can go here
<![endif]-->
These can even be nested to select only a range of versions:
Code:
<!--[if lte IE 6]>
<!--[if gte IE 5.5]>
code here for IE 5.5 through IE 6
<![endif]-->
<![endif]-->
Bookmarks