body{
text-align: center;
min-width: 760px;
background-image : url(e:/pic/live_s.jpg);
height:100%;
}
在IE6中可以正常显示,在firefox2中无法显示,改为
body{
text-align: center;
min-width: 760px;
background-image : url(e:/pic/live_s.jpg);
height:100%;
}
html>body
{
background-image : url(../../../pic/live_s.jpg);
}
用html>body来过滤firefox,即用相对路径firefox才能显示图片。
但是注意在IE7已经支持子选择器>,因此还应该用其他方式来过滤firefox。