Skip to content

Instantly share code, notes, and snippets.

@diverted247
Created April 1, 2015 03:47
Show Gist options
  • Save diverted247/3118d3e08cc52e587da1 to your computer and use it in GitHub Desktop.
Save diverted247/3118d3e08cc52e587da1 to your computer and use it in GitHub Desktop.
Loading external SVG via <use> element. Make note of id in root of external svg
Display the source blob
Display the rendered blob
Raw
<svg id="content" xmlns="http://www.w3.org/2000/svg">
<rect x="13" y="14" width="500" height="200" rx="50" ry="100" fill="none" stroke="blue" stroke-width="10" />
</svg>
<!DOCTYPE html>
<html>
<body>
<svg width="900" height="533"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<use id="slide" xlink:href="external.svg#content"/>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment