How to place and center text in an SVG rectangle

I have the following rectangle:

<rect x="0px" y="0px" width="60px" height="20px"/>

I would like to center the word “Fiction” inside of it. For other rectangles, does SVG word wrap to stay within them? I can’t seem to find anything specifically about inserting text within shapes that are centered both horizontally and vertically and word wrap. Also, the text can not leave the rectangle.

Looking at the https://www.w3.org/TR/SVG/text.html#TextElement example doesn’t help since the text element’s x and y are different from the rectangle’s x and y. There doesn’t seem to be width and height for text elements. I am not sure of the math here.

(My HTML table is just not going to work.)

11 Answers
11

Leave a Comment