Drawing
Next ❯Ways To Add
- In SVG all the style based SVG attributes can also be used as properties, so we prefer it to use as properties (you can use what you feel better)
- turned_in_notDrawing Related Properties
stroke
fill
stroke
Used to draw and color, only the outline of defined paths or shapes
Syntax
stroke="color" /* As attribute */
stroke:color /* As property */
<svg height="100" width="200">
<polyline points="100 10, 20 80, 180 80" style="stroke:red;fill:none"/>
</svg>
stroke
fill
Used to draw and color, only the filled defined paths or shapes, default fill color is black
- If your path is open then it will fill the area covered by joining the first & last path points with a straight line
Syntax
fill="color" /* As attribute */ fill:color /* As property */
<svg height="100" width="200">
<polyline points="100 10, 20 80, 180 80" style="fill:#ff1349;"/>
</svg>
fill
❮ Prev SVG Coordinates
Next ❯Ways To Add