0 added
0 removed
Original
2026-01-01
Modified
2026-03-09
1
<p>Stroke properties are specified using several attributes, where the stroke color and width are specified separately. The color is assigned using the stroke attribute:</p>
1
<p>Stroke properties are specified using several attributes, where the stroke color and width are specified separately. The color is assigned using the stroke attribute:</p>
2
<circle r="60" cx="150" cy="50%" fill="none" stroke="orange"></circle><p>or through CSS:</p>
2
<circle r="60" cx="150" cy="50%" fill="none" stroke="orange"></circle><p>or through CSS:</p>
3
circle { stroke: orange; }<p>The result will be the same. The shape will have a stroke that is one pixel thick:</p>
3
circle { stroke: orange; }<p>The result will be the same. The shape will have a stroke that is one pixel thick:</p>