-1
由於IE不支持「線性漸變」,以下是否正確?IE css背景問題
background: #f5f7f9; /* Old browsers */
background: -moz-linear-gradient(top, #f5f7f9 0%, #cdcdcd 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f7f9), color-stop(100%,#cdcdcd)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f5f7f9 0%,#cdcdcd 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f5f7f9 0%,#cdcdcd 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #f5f7f9 0%,#cdcdcd 100%); /* IE10+ */
background: linear-gradient(to bottom, #f5f7f9 0%,#cdcdcd 100%); /* W3C */
background:url(../img/backgrounds/form_bg.png) 0 0 no-repeat;
我基本上提供圖像後備。
這不是在IE9工作,下面
不明白爲什麼不,你測試過嗎? – plvdmeer
您可能想要將最後一行(包含圖像)添加到漸變上方[[像這樣]](http://jsbin.com/uyOhEWi/2/)。 –
這不適用於IE9及以下版本 – Alex