min-zoom

The min-zoom CSS descriptor sets the minimum zoom factor of a document defined by the @viewport at-rule. The browser will not zoom out any further than this, whether automatically or at the user's request.

A zoom factor of 1.0 or 100% corresponds to no zooming. Larger values are zoomed in. Smaller values are zoomed out.

Syntax

/* Keyword value */
min-zoom: auto;

/* <number> values */
min-zoom: 0.8;
min-zoom: 2.0;

/* <percentage> value */
min-zoom: 150%;

Values

auto
The user agent will set the document's lower zoom factor limit.
<number>
A non-negative number limiting the minimum value of the zoom factor.
<percentage>
A non-negative percentage limiting the minimum value of the zoom factor.

Formal definition

Related at-rule@viewport
Initial valueauto
Percentagesthe zoom factor itself
Computed valueauto, or a non-negative number or percentage as specified

Formal syntax

auto | <number> | <percentage>

Examples

Setting min zoom factor

@viewport {
  min-zoom: 2.0;
}

Specifications

Specification Status Comment
CSS Device Adaptation
The definition of '"min-zoom" descriptor' in that specification.
Working Draft Initial definition

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
min-zoom descriptorChrome No support 29 — 84Edge Full support 12
Prefixed
Full support 12
Prefixed
Prefixed Implemented with the vendor prefix: -ms-
Firefox No support NoIE Full support 10
Prefixed
Full support 10
Prefixed
Prefixed Implemented with the vendor prefix: -ms-
Opera Full support 16Safari No support NoWebView Android No support NoChrome Android No support 29 — 84Firefox Android No support NoOpera Android Full support 16Safari iOS No support NoSamsung Internet Android Full support 2.0

Legend

Full support
Full support
No support
No support
Requires a vendor prefix or different name for use.
Requires a vendor prefix or different name for use.

See also