缩小窗口时CSS背景图出现右侧空白BUG的解决方法

在css内加入如下两行代码,让它自己判断:
width:expression(document.body.clientWidth <= 960? "960px": "auto");
min-width:960px;

.top{
border:0px solid #f00;
width:expression(document.body.clientWidth <= 960? "960px": "auto");
min-width:960px;
height:29px;
url(.. /img/topbar.png) repeat-x;
}

你可能感兴趣的:(缩小窗口时CSS背景图出现右侧空白BUG的解决方法)