由于 IE 不支持“线性渐变”,以下是否正确?
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 及以下版本中不起作用