Skip to content

Instantly share code, notes, and snippets.

@sebastianrothbucher
Last active September 21, 2018 16:13
Show Gist options
  • Save sebastianrothbucher/4a7661b91aad12379b9cb89e3f3e143e to your computer and use it in GitHub Desktop.
Save sebastianrothbucher/4a7661b91aad12379b9cb89e3f3e143e to your computer and use it in GitHub Desktop.
scaling SVG
<svg id="scalesvg" viewBox="0 0 100 100">
<path fill="turquoise" d="M 0 50 L 50 0 L 100 50 L 50 100 Z" />
<text x="50" y="54" style="font-size: 12px; text-anchor: middle; ">Whatever</text>
</svg>
#scalesvg {
width: 20%; /* thx, http://www.sarasoueidan.com/blog/svg-coordinate-systems/ !!! */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment