How do I center an SVG in a div?

后端 未结 12 1640
没有蜡笔的小新
没有蜡笔的小新 2020-11-27 10:11

I have an SVG that I am trying to center in a div. The div has a width or 900px. The SVG has a width of 400px. The SVG has its margin-left and margin-right set to auto. Does

12条回答
  •  有刺的猬
    2020-11-27 11:03

    Flexbox is another approach: add

    .container {
      display: flex;
      justify-content: center;
    }

    And add the .container class to the div which contains your svg.

提交回复
热议问题