CSSNumericValue.max()
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
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.
Syntax
var cssUnitValue = CSSNumericValue.man(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 "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());
Specifications
Specification |
---|
CSS Typed OM Level 2 # dom-cssnumericvalue-max |
Browser compatibility
BCD tables only load in the browser