IE9が背景画像をレンダリングしないことに関して多くの質問を見つけましたが、私のニーズに合った解決策を見つけることができません。
私はバックグラウンドにCSS3グラデーションジェネレーターを使用していますが、IE9を除くすべての最新のブラウザーで問題なく動作します。
使用しているコードは次のとおりです。
body {
background-size: cover;
background-repeat: no-repeat;
background-image: linear-gradient(bottom, rgb(184,190,227) 49%, rgb(118,135,250) 80%);
background-image: -o-linear-gradient(bottom, rgb(184,190,227) 49%, rgb(118,135,250) 80%);
background-image: -moz-linear-gradient(bottom, rgb(184,190,227) 49%, rgb(118,135,250) 80%);
background-image: -webkit-linear-gradient(bottom, rgb(184,190,227) 49%, rgb(118,135,250) 80%);
background-image: -ms-linear-gradient(bottom, rgb(184,190,227) 49%, rgb(118,135,250) 80%);
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.49, rgb(184,190,227)),color-stop(0.8, rgb(118,135,250)));
}
jsFiddleページを設定しました:http://jsfiddle.net/nUA98/
したがって、IE9で機能しない理由を誰かが知っている場合は、コメント/回答をいただければ幸いです。
ありがとうございました。