0
我有這些行從#191919到透明,由http://colorzilla.com/gradient-editor/生成的水平漸變,但在FireFox 29和IE 8中不平滑。它在背景#191919。 (顏色深度問題?) 如果它不是一個修復,那麼它如何阻止這個瀏覽器?謝謝。FF和IE中的平滑漸變
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: #191919;
background: -moz-linear-gradient(left, rgba(25,25,25,1) 0%, rgba(25,25,25,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(25,25,25,1)), color-stop(100%,rgba(25,25,25,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(25,25,25,1) 0%,rgba(25,25,25,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(25,25,25,1) 0%,rgba(25,25,25,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(25,25,25,1) 0%,rgba(25,25,25,0) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(25,25,25,1) 0%,rgba(25,25,25,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#191919', endColorstr='#19191900',GradientType=1); /* IE6-8 */
這裏是一個jsfiddle它。