web api instance property
OffscreenCanvas: width property
Available in workers
The width property returns and sets the width of an OffscreenCanvas object.
Value
A positive integer representing the width of the offscreen canvas in CSS pixels.
Examples
Creating a new offscreen canvas and returning or setting the width of the offscreen canvas:
const offscreen = new OffscreenCanvas(256, 256);
offscreen.width; // 256
offscreen.width = 512;
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
OffscreenCanvas, the interface this property belongs to.