Firefox Tomorrow

http header

Width header

View on MDN ↗

Secure context

[!WARNING] The Width header was standardized as Sec-CH-Width and the new name is now preferred.

The HTTP Width request header is a device client hint which indicates the desired resource width in physical pixels — the intrinsic size of an image. The provided pixel value is a number rounded to the smallest following integer (i.e., ceiling value).

The hint is only sent on image requests.

The hint allows the client to request a resource that is optimal for both the screen and the layout: taking into account both the density-corrected width of the screen and the image’s extrinsic size within the layout.

If the desired resource width is not known at the time of the request or the resource does not have a display width, the Width header field can be omitted. If the Width header appears more than once in a message the last occurrence is used.

Header type [Request header](https://developer.mozilla.org/en-US/docs/Glossary/Request%20header), Client hint
[Forbidden request header](https://developer.mozilla.org/en-US/docs/Glossary/Forbidden%20request%20header) No

Syntax

Width: <number>

Directives

  • <number>
    • : The width of the resource in physical pixels, rounded up to the nearest integer.

Examples

The server first needs to opt in to receive the Width header by sending the response headers Accept-CH containing Width.

Accept-CH: Width

Then on subsequent image requests the client might send Width header back:

Width: 1920

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also