CSS縮小視窗時背景圖出現右側空白解決方案

來源:互聯網
上載者:User
小視窗時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;    margin:0px;    padding:0px;    url(.. /img/topbar.png) repeat-x;}

ok,這個bug終於解決了。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.