ZVON > References > Zvon Example Repository
Example repository: index | categories | search

All > SVG > > Placing text boxes relatively to each other

Use the tspan.


Output
Output - picture
SVG version


Source
<svg width="30" height="30" xmlns="http://www.w3.org/2000/svg" >
     <g font-family="SansSerif" text-anchor="start">
          <text x="0" y="20">5
               <tspan dx="0" dy="-5">3</tspan>
          </text>
     </g>
</svg>