小視窗時CSS背景圖出現右側空白BUG的解決方法(相容各瀏覽器)
解決方法:
在css內加入以下兩行程式碼,讓它自己判斷:
width:expression(document.body.clientWidth 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終於解決了。
以上是CSS縮小視窗時背景圖出現右側空白解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!