Aligning the objects in SVG center

前端 未结 3 1853
情话喂你
情话喂你 2021-01-21 04:09

How can i align objects within svg tag center. I can make it aligned by adjusting the x,y cordiantes in viewbox. But every time i need to change the value according to the size

3条回答
  •  春和景丽
    2021-01-21 05:03

    svg {
      border: 1px solid red;
    }
    .svg--center{  
      background: pink;
      display: inline-block;
      width: 100px;
      line-height: 100px;
      text-align: center;
      vertical-align: middle;
    }

提交回复
热议问题