X attribute is absolute X coordinate for the tspan element. But we check the output is taking more pixels. Instead of tspan element needs to draw from 30 pixels but it is drawn from 39pixes. Why is it like this? My expectation is that it has to draw from 30 pixels enter image description here
<svg height="30" width="200">
<text x="0" y="15" fill="red">I love SVG!
<tspan x="30" y="20"fill="blue">Sub Elemenent Text!</tspan>
</text>
</svg>
I'm not able to reproduce the problem. It looks like
<tspan>
is at the absolute position. I changed the first letter to be "I" for both elements and x for<text>
to 10. It looks right to me.