Skip to content

Instantly share code, notes, and snippets.

@balexand
Last active December 5, 2019 22:45
Show Gist options
  • Save balexand/2f0edd43335c0ed0b78e7606749f6d76 to your computer and use it in GitHub Desktop.
Save balexand/2f0edd43335c0ed0b78e7606749f6d76 to your computer and use it in GitHub Desktop.
svg bbox
var svg = document.getElementsByTagName("svg")[0];
var bbox = svg.getBBox();
[bbox.x, bbox.y, bbox.width, bbox.height].join(" ");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment