2014-01-16 100 views
4

我正在使用css給div一個背景圖像。這是我的CSS背景圖像CSS不會顯示在IE7中,IE8

.header { 
    background: url("../images/header1.png") no-repeat scroll right 15px rgba(0, 0, 0, 0); 
    height: 55px; 
    padding: 5px 0 0; 
    width: 100%; 
} 

這在Firefox正常工作&鉻甚至IE9 & IE10還,但它不是在IE8以上版本的工作。我搜索了&也提到這個問題,但它沒有幫助。

Background image not showing IE8

感謝您的助手提前。在IE7/IE8不支持

+1

'rgba'不支持IE <9。無論如何,小提琴可以幫助 – fcalderan

+0

查看http://stackoverflow.com/questions/15295928/background-image-css-fails-to-display-in-ie7-8 –

+0

@FabrizioCalderan:謝謝..刪除rgba() –

回答

1
.header 
    { 
    background: url("../images/header1.png"); 
    background-repeat:no-repeat; 
    background-position:right 15px; 
    height: 55px; 
    padding: 5px 0 0; 
    width: 100%; 
    }