PNGs in IE6
My preferred way of dealing with IE6’s limitations on transparent PNGs is to use conditional comments and the AlphaImageLoader filter. This is because it requires the least processing on the browser, and works without JavaScript enabled. There are three problems with it. First up, you have to create a CSS rule for every PNG that you want to replace: .class { background-image: none; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/transparent.png', sizingMethod='scale'); } The second problem is that images
Read post »