html,body,svg { height:100% }

by Julien Etienne

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use -->
  <svg viewBox="0 0 30 10">
    <circle id="myCircle" cx="5" cy="5" r="4"/>
    <use href="#myCircle" x="10" fill="blue"/>
  </svg>


<svg viewBox="0 0 30 10">
  <use href="#myCircle" x="20" fill="white" stroke="blue"/>
</svg>

CSS

html,body,svg { height:100px }