html,body,svg { height:100% }

by Serhii Matrunchyk

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line -->

<svg viewBox="0 0 2 100" xmlns="http://www.w3.org/2000/svg">
  <line x1="0" y1="0" x2="0" y2="3" stroke="black" /><line x1="2" y1="0" x2="2" y2="3" stroke="black" />
</svg>

CSS

html,body,svg { height:100% }