+ 1
How I can have a wider stroke in html5 svg please answer
2 Answers
+ 2
check the "stroke-width" property
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="4" fill="transparent" />
</svg>
0
I also thought that we have to define it by stroke width but i didnt thought of usuing that dash sign in between thanks very much