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

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

作者: LIsPeri | 来源:发表于2018-03-23 15:44 被阅读0次

    在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的解决方法

          本文链接:https://www.haomeiwen.com/subject/enjxcftx.html