2015-01-13 154 views
0

好的,這是我在我的CSS體驗中遇到的最奇怪的問題之一。我正在嘗試使用一些微妙的模式,在我的網頁上重複使用div。奇怪的是,每當我嘗試設置非常白的圖案時,瀏覽器拒絕加載圖像。當我嘗試使用較暗的圖像時,它工作得很好。現在我知道顏色顯然不是問題,但我錯過了什麼。下面是HTML/CSS:重複背景不顯示

#section1{ 
background-image: url("../images/as.png"); 

}

<div id="section1"> 
    <div class="content98"> 
     <h1 id="h1d">De ce matest.ro?</h1> 
     <div id="border"> 
     <img class="show" id="show1" src="images/untitled-2.png"> 
     <h2 id="dix">Obiective</h2> 
     <hr> 
     <div id="hided1"><p class="hiding">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer tellus lorem, feugiat ut condimentum ac, ultricies vitae nibh. Duis sed lacinia magna.>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> 
     </div> 
    <br><br> 
    </div> 

+0

你將有一個撥弄重新創建此。白色時你不能看到它的問題? – jmore009

+2

@ jmore009爲什麼小提琴? SO有這個功能,你也知道;) – Madbreaks

+0

我主要用它來表示「發佈一個工作示例」,並不一定是小提琴 – jmore009

回答

0

首先檢查你的bodybackground color白色或更改看看。然後在樣式框中檢查瀏覽器的檢查元素,你的屬性是否刪除。

#section1{ 
background-image: url("../images/as.png"); 
} 

然後將background-repeat:repeat;添加到您的圖片這樣。

#section1{ 
background-image: url("../images/as.png"); 
background-repeat:repeat; 
} 

即使這樣,你可以寫

#section1{ 
background:url("../images/as.png") repeat; 
}