CSSNumericValue.min()
Draft: This page is not complete.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
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
var cssUnitValue = CSSNumericValue.min(number1 ... numbern);
Parameters
- number
-
Either a
Number
or aCSSNumericValue
.
Return value
A CSSUnitValue
.
Exceptions
- TypeError
-
Indicates that 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
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
min |
66 |
79 |
No |
No |
53 |
No |
66 |
66 |
No |
47 |
No |
9.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/min