2011-06-06 92 views
0

我已經有一個CSS佈局,應該不會有滾動條的某個部位出現:火狐Scrolbar CSS問題

http://souk.gumpshen.com/

但會出現一個滾動條,我不能弄明白誰能幫助請?

+0

用戶右側的滾動條,因爲內容正在向下擴展? – 2011-06-06 21:09:31

+0

縮小。滾動條被禁用,但停留在那裏。 – Blender 2011-06-06 21:10:59

回答

2

中的height存在導致滾動條出現。

.flower { 
    background: url("../images/flowers.png") no-repeat scroll 0 0 transparent; 
    height: 400px; 
    left: 696px; 
    position: relative; 
    top: -360px; 
    width: 400px; 
    z-index: 101; 
} 

對於你在做什麼,改變topmargin-top,它應該修復它。

+0

非常感謝花時間尋找那個 – Burt 2011-06-06 21:25:49

1

你的問題是線style.css43

overflow-y: scroll; 

將其更改爲:

overflow-y: auto; 
+1

這似乎並沒有解決他的問題,當我將它刪除W/Firebug。 – kafuchau 2011-06-06 21:11:41

+0

在Chrome上它做到了。我沒有安裝FF。 – Blender 2011-06-06 21:14:20