9
非常奇怪的行爲,我以前沒有見過。固定的div背景重疊瀏覽器滾動條
我有一個固定的位置div有一個透明PNG背景圖像。 z-index設置爲-1,以便內容可以使用滾動條在固定圖像上滾動。
我把它定位在0像素的底部和右側,但圖像重疊滾動條
這裏的鏈接(在FF和Safari,反正。):
http://adamjcas.www59.a2hosting.com/pg/show/id/4
CSS:
#plants /*for the cut paper plants in the background*/
{
background: transparent url(../background_images/plants.png) no-repeat;
bottom:0px;
right:0px;
z-index: -1;
position:fixed;
height:691px;
width:475px;
}
我用過的一個黑客就是用 right:16px;
哪些工作正常,因爲總是(可能)右滾動條。但底部滾動只是有時在那裏。這是一個簡單的CSS問題?
感謝您的幫助。溢出絕對是問題;當我做出這些改變時,它似乎在Firefox上工作(除了背景停止重複),但在Chrome中失敗。感謝您讓我走上正軌;我會堅持併發布結果。 – 2011-01-28 16:17:05