Today I Learned

2021/10/27

svg

About the svg view element: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/view It can be used to create views referable like

<svg id="total">
  <view id="view-1" viewBox="..." />
  <circle cx="1" cy="1" />
</svg>
<img src="#view-1" />