I want to put a rectangle around a text in SVG.
The height of the text is known to me (the font-size
attribute of the text
element). But the width is dependent on the actual content. Using getBBox()
or getComputedTextLength()
should work. But this only works after rendering.
Is there a way to specify that in an other way? For example defining the x
and width
attributes relative to other values? I didn't find anything like that in the SVG Spec.