<div>Hi,</div>
<div>&nbsp;</div>
<div>I have this SVG which shows up fine in Firefox, yet RenderX keeps outputting just the stroke without the gradient. Any ideas please?</div>
<div>&nbsp;</div>
<div>&lt;?xml version=&quot;1.0&quot; standalone=&quot;no&quot;?&gt;<br>&lt;!DOCTYPE svg PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot; &quot;<a href="http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd</a>&quot;&gt; <br>
&lt;svg viewBox = &quot;0 0 350 350&quot; version = &quot;1.1&quot; xmlns=&quot;<a href="http://www.w3.org/2000/svg">http://www.w3.org/2000/svg</a>&quot;&gt;<br>&nbsp;&nbsp;&nbsp; &lt;defs&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;linearGradient id=&quot;grad1&quot; x1=&quot;50%&quot; y1 =&quot;0%&quot; x2 =&quot;50%&quot; y2 =&quot;100%&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;stop style=&quot;stop-color:rgb(255,255,255);stop-opacity:1&quot; offset = &quot;0%&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;stop style=&quot;stop-color:rgb(100,100,100);stop-opacity:1&quot; offset = &quot;100%&quot;/&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/linearGradient&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/defs&gt;<br>&nbsp;&nbsp;&nbsp; &lt;rect width = &quot;350&quot; height = &quot;350&quot; stroke = &quot;black&quot; stroke-width = &quot;1&quot; fill = &quot;url(#grad1)&quot;/&gt;<br>&lt;/svg&gt;</div>