我有一個沒有那麼異常的問題,但無論是我的谷歌技能吸或我不知道如何問和找到我的問題的解決方案。IE 8背景圖像問題
我使用bootstrap3來建立我的網站,除了橫幅部分,在IE 8上看起來不錯。
外部.row div是100%,背景圖像覆蓋全部。在div裏面,我有一個.container div,它的中心內容在兩端留下了一些空間。
在除IE8以外的所有瀏覽器中,此設計可以正常工作,但在IE上,背景圖像只能達到.container在兩邊留下空白區域。
這裏是我的CSS
.heading
{
background: url(../images/inner-heading-bg.png) no-repeat scroll;
background-position:center;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
min-width: 50px;
min-width: 100%;
}
請參見附件圖像IE
這是因爲IE8不支持'background-size'http://caniuse.com/#search=background-size – enyce12
我實際上在底部有下面這幾行,應該會讓它支持沒有太大的成功: filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src ='../images/inner-heading-bg.png',sizingMethod ='scale'); -ms-filter:「progid:DXImageTransform.Microsoft.AlphaImageLoader(src ='../images/inner-heading-bg.png',sizingMethod ='scale')」; –