+ 1
SVG help
I've been messing with SVG forms but how can i change the stroke thikness here? https://code.sololearn.com/WeKcPE6f1H4S/?ref=app
4 Answers
+ 3
Hey ClaymanCompany
You can add the âstroke-widthâ attribute as shown below in the code
The default stroke width is â1â
example: stroke-width=5
I editted your code here:
https://code.sololearn.com/Wxxte3W1wNIi/?ref=app
+ 3
ClaymanCompany using style
path{
stroke-width:5;
}
is also a good choice it take less codes
+ 2
Your welcome ClaymanCompany
+ 1
thank you Agent!