html,body,svg { height:100% }
by Nicolas PUJOL
HTML
<!-- Learn about this code on MDN: https://developer.mozilla.org/fr/docs/Web/SVG/Element/g -->
<svg viewBox="0 0 350 350" xmlns="http://www.w3.org/2000/svg">
<svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg">
<!-- Les enfants de g héritent de ses attributs de présentation -->
<g fill="white" stroke="green" stroke-width="1" viewBox="0 0 350 350">
<circle cx="40" cy="40" r="25" />
<circle cx="60" cy="60" r="25" />
</g>
</svg>
</svg>
CSS
html,body,svg { height:100% }