the stroke-width
attribute specifies the width of the outline on the current object. Its default value is 1. If a <percentage> is used, the value represents a percentage of the current viewport. If a value of 0 is used the outline will never be drawn.
As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet
Categories | Presentation attribute |
---|---|
Value | <length> | <percentage> | inherit |
Animatable | Yes |
Normative document | SVG 1.1 (2nd Edition) |
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"> <circle cx="100" cy="100" r="100" /> </svg> <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"> <circle cx="100" cy="100" r="100" stroke="#ff0" stroke-width="10" /> </svg>
The following elements can use the stroke-width
attribute
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-width