Why isn’t my font resizing like I told it too?
None of the styles that you apply with your svg text
selector actually work. They do though, if you use the id of the text element instead (replace svg text
with #text
). No idea why.
You can also put the style into your svg like this:
<text text-anchor="middle" x="50%" y="60%" font-size="200px">
1 Like
Thank you!
I wonder why it’s that way…