|
|
|
|
|
by car
4543 days ago
|
|
You can reference SVG documents or elements within those in HTML. More here: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/x... Here an example, where a whole svg document is linked to from another svg element (scaled with viewBox): <div>
<svg viewBox="0 0 500 500" width="200" height="75">
<g>
<use xlink:href="#BaseQuality-svg"></use>
</g>
</svg>
</div>
|
|