Align lines of text to center in SVG

后端 未结 3 1149
醉梦人生
醉梦人生 2020-12-29 18:34

I need to output multiple lines of text in SVG. For that I\'m using the following scheme:


   First line 
  

        
3条回答
  •  感情败类
    2020-12-29 18:58

    Key points to horizontally centering the text:
    1. x="50%"
    2. text-anchor='middle'

    In your case, you may write as:

    
      
         First line 
         Second line 
      
    
    

提交回复
热议问题