<style>
  svg {
    border: 1px solid red;
  }
</style>
</head>

<body>
  <svg id="svg">
    <g id="container">
      <rect width="200" height="300" x="0" y="0" fill="red" />
      <circle cx="0" cy="0" r="140" fill="blue" stroke="green" stroke-width="10"/>
     </g>
  </svg>
const svg = document.getElementById("svg");
const container = document.getElementById("container");
const bBox = container.getBBox();

svg.setAttribute("width", bBox.width);
svg.setAttribute("height", bBox.height);
svg.setAttribute("viewBox", `${bBox.x} ${bBox.y} ${bBox.width} ${bBox.height}`);

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.