2014-05-22 40 views
0

我有我的cssIE7IE8的CSS問題上的Internet Explorer 7的XHTML代碼和8

問題我米使用下面的代碼爲我的輸入框,但背景圖像無法顯示 上Internet Explorer 7和8.圖像顯示在所有其他瀏覽器上。屬性的

.search input[type="submit"] { 
    background: url(../images/search_button.png) no-repeat scroll 0 0 rgba(0, 0, 0, 0); 
    border: 0 none; 
    float: right; 
    height: 31px; 
    margin-left: 10px; 
    margin-top: 6px; 
    width: 40px; 
} 

回答

0

一個未知/錯值使得整個財產invalide

IE 7和8不知道rgba所以整個background不適用。

爲了解決這個問題,你可以拆分移動rgbabackground-color

.search input[type="submit"] { 
    background: url(../images/search_button.png) no-repeat scroll 0 0; 
    background-color: rgba(0, 0, 0, 0); 
    border: 0 none; 
    float: right; 
    height: 31px; 
    margin-left: 10px; 
    margin-top: 6px; 
    width: 40px; 
}