Skip to content

Instantly share code, notes, and snippets.

@undrafted
Created December 9, 2019 12:50
Show Gist options
  • Save undrafted/5d6da4d8f2d0b8e69eaa85549384552c to your computer and use it in GitHub Desktop.
Save undrafted/5d6da4d8f2d0b8e69eaa85549384552c to your computer and use it in GitHub Desktop.
const svg = document.querySelector("svg");
const bbox = svg.getBBox();
svg.setAttribute("viewBox", [bbox.x, bbox.y, bbox.width, bbox.height].join(" "));
console.log(svg.outerHTML);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment