Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. SVGRectElement
  4. width

SVGRectElement: width property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨July 2015⁩.

Thewidth read-only property of theSVGRectElement interface describes the horizontal size of an SVG rectangle as aSVGAnimatedLength. The length is in user coordinate system units along the x-axis. Its syntax is the same as that for<length>.

It reflects the<rect> element'swidth presentational attribute. The CSSwidth property takes precedence over the SVGwidth presentational attribute, so the value may not reflect the elements actual size. The default value is0.

Value

AnSVGAnimatedLength.

Example

js
const rectangle = document.querySelector("rect");const rectWidth = rectangle.width;console.log(rectWidth.baseVal.value); // the `width` value

Specifications

Specification
Scalable Vector Graphics (SVG) 2
# __svg__SVGRectElement__width

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp