我的背景未加載。它嵌入在通過樣式表加載的標題標籤中。見下面的css:無法加載頁眉背景
header{
margin: 0;
background-image: url(/images/sagage_header900.png) no-repeat ;
display: block;
}
Thanx提前!
我的背景未加載。它嵌入在通過樣式表加載的標題標籤中。見下面的css:無法加載頁眉背景
header{
margin: 0;
background-image: url(/images/sagage_header900.png) no-repeat ;
display: block;
}
Thanx提前!
請勿在background-image
屬性中使用no-repeat
。
試試這個:
background: url(/images/sagage_header900.png) no-repeat;
OR
background-image: url(/images/sagage_header900.png);
background-repeat: no-repeat;
嘗試,如果你想添加背景重複刪除不重複
background-image: url(/images/sagage_header900.png);
:
background-repeat: no-repeat
如果仍然不能正常工作,嘗試添加!important
到背景圖片如下:
background-image: url(/images/sagage_header900.png)!important;
不要使用重要的...如果他想覆蓋現有的規則,只需定義更多的選擇器 –
@CyrilBeeckman我同意你的看法。添加更多選擇器是一個好主意,而不是添加!important。 –
是URL路徑是否正確?你檢查了嗎? – athi