2012-05-30 100 views
1

我在一個頁面上工作,我的內容放在我的樣式表的一個包裝中。然而,包裝的背景沒有出現在內容後面,我無法弄清楚爲什麼。我該怎麼做這個CSS錯誤?

這是代碼片段。

#wrapper { 
    width: 850px; 
    margin-top: -44px; 
    padding: 15px; 
    background-image: url('http://www.website.com/tumblr/images/contentbg_grey.png') repeat-y center; 
    border: dashed thin blue; 
    position: relative; 
    text-align:center; 
} 

回答

5
background-image: url('http://www.website.com/tumblr/images/contentbg_grey.png') repeat-y center; 

應該是:

background: url('http://www.website.com/tumblr/images/contentbg_grey.png') repeat-y center center; 

刪除 「 - 影像」 如果你使用速記

0

有此URL沒有圖像。 檢查您的圖像。 Css代碼似乎是正確的。只需將背景圖像更改爲背景即可。 http://www.website.com/tumblr/images/contentbg_grey.png

測試:

<html> 
<head> 
<style type="text/css"> 
div#wrapper { 
       width: 850px; 
       min-width: 850px; 
       min-height: 400px; 
       margin-top: -44px; 
       padding:15px; 
       background: url('http://www.website.com/img/logo.png') repeat-y center; 
       border: dashed thin blue; 
       position:   relative; 
       text-align:center; 
      } 
</style> 
</head> 
<body> 
<div id="wrapper"></div> 
</body> 
</html>