A Pen by Sebastian Rothbucher on CodePen.
Last active
September 21, 2018 16:13
-
-
Save sebastianrothbucher/4a7661b91aad12379b9cb89e3f3e143e to your computer and use it in GitHub Desktop.
scaling SVG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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