SVG:四角形を描く
SVGで矩形(長方形・四角形)を描画するには、rect要素を使用する
SVG:rect
SVG:rect要素
https://svg-hosting.vercel.app/api/svg?url=https://scrapbox.io/api/code/suto3/SVG:四角形を描く/r.svg
code:r.svg
<svg xmlns="
http://www.w3.org/2000/svg"
viewBox="0 0 200 200" width="200" height="200">
<rect width="150" height="100" x="25" y="15" />
</svg>
SVG:四角形
SVG:図形要素