SVG pathLength Attribute Last Updated : 31 Mar, 2022 Comments Improve Suggest changes Like Article Like Report The pathLength attribute defines the total length for the path, in user units. The elements which are using this attribute are: <circle>, <ellipse>, <line>, <path>, <polygon>, <polyline>, and <rect> Syntax: pathLength = number Attribute Values: The pathLength attribute accepts the values mentioned above and described below number: It is either a number with a fractional component or an integer. Below examples illustrate the use of pathLength attribute. Example 1: HTML <!DOCTYPE html> <html> <head> <style> path { stroke: green; stroke-width: 5; stroke-dasharray: 12; } </style> </head> <body> <h2 style="color: green;"> GeeksforGeeks </h2> <svg viewBox=" 0 0 400 60" xmlns="http://www.w3.org/2000/svg"> <path d="M 0,10 h100" /> <path d="M 0,20 h100" pathLength="80" /> </svg> </body> </html> Output: Example 2: HTML <!DOCTYPE html> <html> <head> <style> path { stroke: green; stroke-width: 5; stroke-dasharray: 12; } </style> </head> <body> <h2 style="color: green;"> GeeksforGeeks </h2> <svg viewBox="0 20 400 60" xmlns="http://www.w3.org/2000/svg"> <path d="M 0,30 h100" pathLength="60" /> <path d="M 0,40 h100" pathLength="30" /> <path d="M 0,50 h100" pathLength="10" /> </svg> </body> </html> Output: Comment T thacker_shahid Follow 0 Improve T thacker_shahid Follow 0 Improve Article Tags : Web Technologies HTML HTML-SVG SVG-Attribute Explore HTML BasicsHTML Introduction5 min readHTML Editors5 min readHTML Basics7 min readStructure & ElementsHTML Elements5 min readHTML Attributes8 min readHTML Headings4 min readHTML Paragraphs5 min readHTML Text Formatting4 min readHTML Block and Inline Elements3 min readHTML Charsets4 min readListsHTML Lists3 min readHTML Ordered Lists5 min readHTML Unordered Lists4 min readHTML Description Lists3 min readVisuals & MediaHTML Colors11 min readHTML Links Hyperlinks3 min readHTML Images7 min readHTML Favicon4 min readHTML Video4 min readLayouts & DesignsHTML Tables10 min readHTML Iframes4 min readHTML Layout4 min readHTML File Paths3 min readProjects & Advanced TopicsHTML Forms5 min readHTML5 Semantics6 min readHTML URL Encoding4 min readHTML Responsive Web Design11 min readTop 10 Projects For Beginners To Practice HTML and CSS Skills8 min readTutorial ReferencesHTML Tags - A to Z List15+ min readHTML Attributes Complete Reference8 min readHTML Global Attributes5 min readHTML5 Complete Reference8 min readHTML5 MathML Complete Reference3 min readHTML DOM Complete Reference15+ min readHTML DOM Audio/Video Complete Reference2 min readSVG Element Complete Reference5 min readSVG Attribute Complete Reference8 min readSVG Property Complete Reference7 min readHTML Canvas Complete Reference4 min read Like