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
Flexbox is another approach: add
.container { display: flex; justify-content: center; }
And add the .container class to the div which contains your svg.
.container