The max()
method of the CSSNumericValue
interface returns the highest value from among the values passed. The passed values must be of the same type.
The max()
method of the CSSNumericValue
interface returns the highest value from among the values passed. The passed values must be of the same type.
js
max(number1, /* …, */ numberN)
number1
, …, numberN
Either a number or a CSSNumericValue
.
A CSSUnitValue
.
TypeError
Thrown if an invalid type was passed to the method.
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.
js
// Prints "2cm" console.log(CSS.cm("1").max(CSS.cm("2")).toString()); // Prints "max(1cm, 0.393701in)" console.log(CSS.cm("1").max(CSS.in("0.393701")).toString());
Specification |
---|
CSS Typed OM Level 1 # dom-cssnumericvalue-max |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
max |
66 | 79 | No | No | 53 | 16.4 | 66 | 66 | No | 47 | 16.4 | 9.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CSSNumericValue/max