generated at
SVG:rect要素
<rect x="60" y="30" width="200" height="80" />
x : 開始位置(x座標)
y : 開始位置(y座標)
width
height
rx="the x-axis radius (to round the element)"
ry="the y-axis radius (to round the element)"
Color、FillStroke、Graphics


r.svg
<svg viewBox="0 0 220 100" xmlns="http://www.w3.org/2000/svg"> <!-- Simple rectangle --> <rect width="100" height="100" /> <!-- Rounded corner rectangle --> <rect x="120" width="100" height="100" rx="15" /> </svg>

SVG要素