A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/min below:

CSSNumericValue: min() method - Web APIs

CSSNumericValue: min() method

Limited availability

The min() method of the CSSNumericValue interface returns the lowest value from among those values passed. The passed values must be of the same type.

Syntax
min(number1, /* …, */ numberN)
Parameters Return value

A CSSUnitValue.

Exceptions
TypeError

Thrown if an invalid type was passed to the method.

Examples

As stated earlier, all passed values must be of the same type and value. Some of the following examples illustrate what happens when they are not.

// Prints "1cm"
console.log(CSS.cm("1").min(CSS.cm("2")).toString());

// Prints "max(1cm, 0.393701in)"
console.log(CSS.cm("1").max(CSS.in("0.393701")).toString());
Specifications Browser compatibility

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4