2011-06-23 84 views

回答

1

它與.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; 
} 
+0

Tust試過你的代碼,但unfortunalty沒有奏效。任何其他想法?幫助真的很感激。 – Burt

+0

只要'.flower'不會碰到我的瀏覽器的邊緣,它就適用於我的開發人員工具http://i.imgur.com/O696Q.jpg –

+0

我正在看它在FireFox – Burt