Svg: Text Centerd Differently In Ff And Chrome
I have the following SVG content
Solution 1:
Add dominant-baseline="middle"
and edit your code like this:
<text alignment-baseline="middle" dominant-baseline="middle"text-
anchor="middle" x="50%" y="50%">
missing
</text>
Here's the codepen snippet that I tested in both Chrome and Firefox.
Post a Comment for "Svg: Text Centerd Differently In Ff And Chrome"