我正在研究應用哪個平臺針對現代瀏覽器,但特殊情況下它需要在不支持CSS3漸變的IE9上運行。任何人都可以請建議任何替代(SVG除外)會大大受益。可用於IE9的CSS3漸變替代方案
.GRAD_LINEAR(@start:#EEA611; @end:#E3EE11) {
background: @start;
background-image:-webkit-gradient(linear, left top, left bottom, from(@start), to(@end));
background-image:-webkit-linear-gradient(top, @start, @end);
background-image:-moz-linear-gradient(top, @start, @end);
background-image:-o-linear-gradient(top, @start, @end);
background-image:linear-gradient(to bottom, @start, @end);
//Your suggestion...
}
使用圖像... –