Hello Everyone
Have a problem with AlphaImageLoade r. This is portion of CSS that makes me pull my hair out (and there is not much left to pull any more anyway)
Basically I have a div that has transparent png as a background. This png should be repeated as the div grows but since I need transparency I must use AlphaImageLoade r for older IE browsers. This is the code:
Works like a charm for IE6 but with IE5.5 crashes as soon as height is greater than given 479px and I can not keep it fixed height.... Any ideas/help much appreciated.
Thanks
Have a problem with AlphaImageLoade r. This is portion of CSS that makes me pull my hair out (and there is not much left to pull any more anyway)
Basically I have a div that has transparent png as a background. This png should be repeated as the div grows but since I need transparency I must use AlphaImageLoade r for older IE browsers. This is the code:
Code:
/*from ie_older.css*/
#theDiv{
width: 950px;
height: auto !important;
height: 479px;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="project/view/images/img.png", sizingMethod="scale");
}
Thanks
Comment