SVG markerWidth Attribute Last Updated : 31 Mar, 2022 Comments Improve Suggest changes Like Article Like Report The markerWidth attribute indicates the width of the viewport within which the <marker> is to be adjusted when it is displayed according to the preserveAspectRatio and viewBox attributes. Only <marker> element is using this attribute. Syntax: markerWidth = "length-percentage" | "number" Attribute values: The markerWidth attribute accepts values mentioned above and described below. length-percentage: It indicates either an relative or an absolute width of the marker.number: It indicates the width of the marker in the units defined by the markerUnits attribute. Note: The default value of markerWidth attribute is 3. Example 1: Below are the examples that illustrates the use of markerWidth attribute. HTML <!DOCTYPE html> <html> <body> <h1 style="color: green; margin-left: 10px;"> GeeksforGeeks </h1> <svg viewBox="-20 -5 1220 520" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="geek" markerWidth="2.5" markerHeight="2.5" refX="1.5" refY="1.5"> <circle cx="6" cy="6" r="10" stroke="none" fill="yellow"/> </marker> </defs> <polyline points="20, 20 40, 25 60, 40 80, 120 120, 140 200, 180" style="fill:none;stroke:green; stroke-width:5" marker-mid="url(#geek)"/> </svg> </body> </html> Output: Example 2: HTML <!DOCTYPE html> <html> <body> <h1 style="color: green; margin-left: 10px; font-size: 25px;"> GeeksforGeeks </h1> <svg viewBox="0 15 1220 520" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="geek" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="10" markerHeight="8" orient="auto"> <path d="M 0 0 L 10 5 L 0 10 z" fill="#008000"/> </marker> </defs> <polyline points="100, 105 180, 20 100, 17 50, 100" stroke="green" stroke-width="5" fill ="none" marker-start="url(#geek)"/> </svg> </body> </html> Output: Create Quiz 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 Introduction4 min readHTML Editors4 min readHTML Basics7 min readStructure & ElementsHTML Elements4 min readHTML Attributes7 min readHTML Headings3 min readHTML Paragraphs3 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 Hyperlinks2 min readHTML Images7 min readHTML Favicon4 min readHTML Video4 min readLayouts & DesignsHTML Tables9 min readHTML Iframes4 min readHTML Layout4 min readHTML File Paths3 min readProjects & Advanced TopicsHTML Forms4 min readHTML5 Semantics5 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 List5 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