如何使 SVG 描边粗细起作用?
How do I get SVG stroke thickness to work?
为什么厚度不起作用?
<svg height="80" width="300">
<path stroke-width="50" d="M 0.269 32.153 L 13.013 2.051 A 3.774 3.774 0 0 1 13.832 0.841 A 3.616 3.616 0 0 1 14.136 0.574 A 3.515 3.515 0 0 1 15.918 0 L 16.406 0 A" />
</svg>
可能是因为绘图只用了填充,没有描边?
此外,请注意,您的 SVG 没有定义 viewBox
。
为什么厚度不起作用?
<svg height="80" width="300">
<path stroke-width="50" d="M 0.269 32.153 L 13.013 2.051 A 3.774 3.774 0 0 1 13.832 0.841 A 3.616 3.616 0 0 1 14.136 0.574 A 3.515 3.515 0 0 1 15.918 0 L 16.406 0 A" />
</svg>
可能是因为绘图只用了填充,没有描边?
此外,请注意,您的 SVG 没有定义 viewBox
。