+ 1
How to use stroke to put an outline around circle in svg?
<svg width="2000" height="2000"> <circle cx="80" cy="80" r="50" fill="green" stroke /> </svg>
1 Antwort
+ 4
stroke="#FF0000" stroke-width="2px"
You need to specify a 'stroke-width' value to be able to "put an outline"...