2011-12-15 245 views
0

我有一個奇怪的問題。在我開始在網站上工作之前,我正在測試一些東西,所以我正在製作不同的頁面,其中包含不同的圖像。背景圖像dosnt顯示

我正在使用我在photoshop(背景圖片)中製作的圖片,並且出於某種原因,它並未在Chrome,FireFox或IE9的頁面上顯示。

下面是簡單的代碼中CSS:

body 
{ 
    width:auto; 
    height:1000px; 
    background:red images\BackGroundBig.jpg repeat-y fixed top ;   
} 

有什麼不好呢?

當我將其更改爲僅:background-color:red時,它顯示爲紅色背景。

回答

5

語法錯誤:

background:red url("images/BackGroundBig.jpg") repeat-y fixed top ; 
+0

感謝,但其仍然dosnt顯示th e圖像只有紅色背景。 – samy 2011-12-15 16:33:50

1

另外,你可以得到它像用於背景的影響,這些

CSS屬性:

background-color 
background-image 
background-repeat 
background-attachment 
background-position 

共有

background:Color url("path") repeat x y;