Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<body>
<script>
let g = document.createElementNS(SVG_NS, "g");
g.style.display = "contents";
document.body.appendChild(g);
let div = document.createElement('div');
div.style.width = div.style.height = "100px";
div.style.backgroundColor = "green";
g.appendChild(div);
</script>
</body>