SVG线性渐变大小在Firefox中没有变化

时间:2012-10-13 02:10:52

标签: firefox svg gradient linear-gradients

我的SVG创建的线性渐变有问题。在Firefox中,我无法将其扩展到250像素左右。 这是我到目前为止所做的。

    <svg>
       <defs>
          <linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
             <stop offset="0%" style="stop-color:rgb(0, 124, 57);stop-opacity:1" />
         <stop offset="100%" style="stop-color:rgb(0, 100, 47);stop-opacity:1" />
          </linearGradient>
   </defs>
   <rect width="" height="34" fill="url(#grad1)" />
</svg>

1 个答案:

答案 0 :(得分:0)

<svg>元素更改为<svg height="100%" width="100%">