Tutorial PNG Hack/Fix for IE 6
For CSS background-images .yourselector { width:200px; height:100px; background: url(/folder/yourimage.png) no-repeat; ...
https://iskablogs.blogspot.com/2014/03/tutorial-png-hackfix-for-ie-6.html
For CSS background-images
.yourselector {
width:200px;
height:100px;
background: url(/folder/yourimage.png) no-repeat;
_background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/folder/yourimage.png',sizingMethod='crop');
}
Cannot be used with repeating, needs fixed with and height.
For inline HTML images
img, .png {
.yourselector {
width:200px;
height:100px;
background: url(/folder/yourimage.png) no-repeat;
_background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/folder/yourimage.png',sizingMethod='crop');
}
Cannot be used with repeating, needs fixed with and height.
For inline HTML images
img, .png {