This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

width

Summary

Specifies the width, in pixels, of certain content elements.

Applies to [HTMLImgElement](/html/elements/img)
The **width** attribute specifies the visual width of [img](/html/elements/img), [iframe](/html/elements/iframe), [embed](/html/elements/embed), [object](/html/elements/object), [video](/html/elements/video), [canvas](/html/elements/canvas), and [input[type="image"]](/html/elements/input/type/image) in pixels.

By default, elements will not preserve aspect ratio when width attribute is set, without a height attribute. If a width attribute is set, but no height, an image will scale to preserve its original aspect ratio. If both the width and height are zero, the element should not be intended to be visible by the user.

Width values must be non-negative integers.

Examples

<img> with width attribute.

<img src="/logo/wplogo_transparent_xlg.png" height="100" width="150">

View live example

<canvas> with width attribute

<canvas width="200" height="200"></canvas>

View live example

Related specifications

HTML4 Specification
W3C Recommendation

Attributions