0
我正在使用jquery.jscrollpane.js將滾動條放在div上。它似乎是在下面的頁面底部放置一個水平滾動條,任何人都可以幫忙嗎?CSS jQuery Scrollpane問題
http://souk.gumpshen.com/our-story/
我正在使用jquery.jscrollpane.js將滾動條放在div上。它似乎是在下面的頁面底部放置一個水平滾動條,任何人都可以幫忙嗎?CSS jQuery Scrollpane問題
http://souk.gumpshen.com/our-story/
它與.flower
你的CSS做。
.flower {
background: transparent url("../images/flowers.png") no-repeat 0 0;
margin-top: -360px;
left: 696px;
position: relative;
width: 100%;
z-index: 101;
width: 400px;
height: 400px;
}
您將寬度設得太大,以至於溢出頁面。你也可以改變你的身高,因爲它只是使用289px X 367px的背景圖像,並刪除width: 100%;
.flower {
background: transparent url("../images/flowers.png") no-repeat 0 0;
margin-top: -360px;
left: 696px;
position: relative;
z-index: 101;
width: 289px;
height: 367px;
}
Tust試過你的代碼,但unfortunalty沒有奏效。任何其他想法?幫助真的很感激。 – Burt
只要'.flower'不會碰到我的瀏覽器的邊緣,它就適用於我的開發人員工具http://i.imgur.com/O696Q.jpg –
我正在看它在FireFox – Burt