The text element for SVG specifies a graphics element consisting of text.
Specifies the relative x-coordinate of the current text position.
[ [ <length-percentage> | <number> ]+ ]# Specifies the relative y-coordinate of the current text position.
[ [ <length-percentage> | <number> ]+ ]# Specifies the adjustment to spacing or spacing and glyphs.
spacing | spacingAndGlyphs Specifies the supplemental rotation, in degrees, about the current text position that will be applied to all of the glyphs corresponding to each character within this element.
Specifies the length for the text to fit.
<length-percentage> | <number> Specifies the x-coordinate of the current text position.
[ [ <length-percentage> | <number> ]+ ]# Specifies the y-coordinate of the current text position.
[ [ <length-percentage> | <number> ]+ ]#
<svg xmlns="http://www.w3.org/2000/svg">
<text dx="1e2 2e2 3e2 4e2" dy="1.1e1">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text dy="100 200 300 400">text</text>
<text dx="10%" dy="10% 20% 30% 40%">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text dy="1e2 2e2 3e2 4e2">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text lengthAdjust="spacing" textLength="100%" y="11">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text lengthAdjust="spacingAndGlyphs" textLength="100%" y="11">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text rotate="15 30 45 60" y="11">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text textLength="100" y="11">text</text>
<text textLength="100%" y="10%">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text textLength="1e2" y="11">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text x="100 200 300 400" y="11">text</text>
<text x="10% 20% 30% 40%" y="10%">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text x="1e2 2e2 3e2 4e2" y="1.1e1">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text y="100 200 300 400">text</text>
<text x="10%" y="10% 20% 30% 40%">text</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<text y="1e2 2e2 3e2 4e2">text</text>
</svg>