我的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>
答案 0 :(得分:0)
将<svg>
元素更改为<svg height="100%" width="100%">