8
是否可以使用CSS3漸變樣式填充屬性?CSS 3漸變樣式SVG元素
我知道SVG提供了自己的漸變。但對我來說,理想的解決辦法是:
.button{
fill:#960000;
fill: -webkit-gradient,linear,left bottom,left top,
color-stop(0.45, #37304C),color-stop(0.73, #534D6B));
fill: -moz-linear-gradient(center bottom,#37304C 45%,#534D6B 73%);
...
}
當我試圖使用SVG漸變,我stucked當我試圖提取風格屬性,外部的樣式表。似乎fill:url(#linearGradientXYZ)不起作用,因爲漸變是在.svg文件中定義的。