Baseline Widely available
The width
read-only property of the SVGSVGElement
interface describes the horizontal size of element as an SVGAnimatedLength
. It reflects the <svg>
element's width
attribute, which may not be the SVG's rendered width.
The CSS width
property takes precedence over the <svg>
element's width
attribute, so the value may not reflect the element's appearance. If both the viewBox
and width
attributes are omitted, the width
property reflects that actual width.
const svg = document.querySelector("svg");
const inlineSize = svg.width;
console.dir(inlineSize.baseVal.value); // the `width` value
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4