Sec-CH-Viewport-Height header

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

The HTTP Sec-CH-Viewport-Height request header is a device client hint which provides the client's layout viewport height in CSS pixels. The value is rounded up to the smallest following integer (i.e., ceiling value).

The hint can be used with other screen-specific hints to deliver images optimized for a specific screen size, or to omit resources that are not needed for a particular screen height. If the Sec-CH-Viewport-Height header appears more than once in a message the last occurrence is used.

A server has to opt-in to receive the Sec-CH-Viewport-Height header from the client, by sending the Accept-CH response header. Servers that opt-in will typically also specify it in the Vary header which informs caches that the server may send different responses based on the header value in a request.

Header type Request header, Client hint
Forbidden request header No

Syntax

http
Sec-CH-Viewport-Height: <number>

Directives

<number>

The height of the user's viewport in CSS pixels, rounded up to the nearest integer.

Examples

Using Sec-CH-Viewport-Height

A server must first opt-in to receive the Sec-CH-Viewport-Height header by sending the response header Accept-CH containing the directive Sec-CH-Viewport-Height.

http
Accept-CH: Sec-CH-Viewport-Height

In subsequent requests, the client might send Sec-CH-Viewport-Height header:

http
Sec-CH-Viewport-Height: 480

Browser compatibility

See also