IE6使用png作为背景图片

来源:互联网 发布:社交软件 头像限制 编辑:程序博客网 时间:2024/06/05 13:35

用png图片做背景的问题

FF:

.CategoryBottomBg
{
 background:url(Images/CategoryBottomBg.png) ;
 width:170px;
 height:113px;
}

---------------------------------------------------------------------------------

IE6:

*html .CategoryBottomBg
{
 background:;
 filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='Images/CategoryBottomBg.png');
 width:170px;
 height:113px;
}

 

--------------------------------------------------------------------------------

IE7

*+html .CategoryBottomBg
{
 background:url(Images/CategoryBottomBg.png);
 width:170px;
 height:113px;
}

-------------------------------------------------------------------------------------------

如果想要在IE6中使用背景图片必须使用 filter: progid:DXImageTransform.Microsoft.AlphaImageLoader方法引用png图片。如果想要使用png平铺作为背景,则必须有一个高度,如果想要自适应高度则应把高度设为100%.否则,在ie6中不会正常显示。