CSSMathMin
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Want more browser support for this feature? Tell us why.
Note: This feature is available in Web Workers.
The CSSMathMin interface of the CSS Typed Object Model API represents the CSS min() function.
Constructor
CSSMathMin()-
Creates a new
CSSMathMinobject.
Instance properties
Also inherits properties from its parent interface, CSSMathValue.
CSSMathMin.valuesRead only-
Returns a
CSSNumericArrayobject which contains one or moreCSSNumericValueobjects.
Static methods
Also inherits methods from its parent interface, CSSMathValue.
Instance methods
Also inherits methods from its parent interface, CSSMathValue.
Description
The CSS min() function takes one or more comma-separated values as arguments and returns the smallest of them.
If all arguments are absolute values, such as pixel lengths, min() is resolved to a single value at parse time, represented by the CSS Typed Object Model as a CSSUnitValue.
If the min() expression can't be resolved to a single value at parse time (say, because one of its arguments uses a relative unit like vw or %), the function is represented as a CSSMathMin object, and the arguments passed to min() (or to the CSSMathMin() constructor) are exposed as the values property.
Note that CSSMathMin represents the min() function, not its resolved value.
In order to determine the value of a property using min(), you need to read its computed style (for example with getComputedStyle()).
Examples
>Basic usage
The following code creates a CSSMathMin instance from three values, then reads back its operator and values properties.
const min = new CSSMathMin(CSS.px(10), CSS.em(5), CSS.percent(50));
console.log(min.constructor.name); // "CSSMathMin"
console.log(min.operator); // 'min'
console.log(min.values);
// CSSNumericArray {0: CSSUnitValue, 1: CSSUnitValue, 2: CSSUnitValue, length: 3}
console.log(min.values[0]); // CSSUnitValue {value: 10, unit: "px"}
min() representations
This example shows how min() is represented by a CSSUnitValue or a CSSMathMin, depending on whether all of its arguments are absolute values.
HTML
<div id="demoBox">Text</div>
CSS
width is set using a min() whose arguments are all absolute lengths, so the browser can resolve it to a single fixed value immediately.
font-size is set using a min() where one argument uses the relative unit vw, so the browser can't resolve it until layout (this will be represented by a CSSMathMin).
#demoBox {
width: min(10px, 50px);
font-size: min(1rem, 5vw);
}
JavaScript
First we find the demo box's style rule and read its width and font-size values using styleMap.
const demoBox = document.querySelector("#demoBox");
const rules = document.getElementById("css-output").sheet.cssRules;
const rule = [...rules].find((r) => r.selectorText === "#demoBox");
const styleMap = rule.styleMap;
const width = styleMap.get("width");
const fontSize = styleMap.get("font-size");
We then log the type and value of the CSS Typed OM representations, followed by the computed (resolved) values.
log("width");
log(` type: ${width.constructor.name}`);
log(` value: ${width}`);
log(` resolved: ${getComputedStyle(demoBox).width}`);
log("\nfont-size");
log(` type: ${fontSize.constructor.name}`);
log(` values: [${[...fontSize.values].join(", ")}]`);
log(` resolved: ${getComputedStyle(demoBox).fontSize}`);
Result
width is represented by a CSSUnitValue object, which has a value that matches the resolved width.
font-size is represented by a CSSMathMin object that exposes the min() function's original operands.
Specifications
| Specification |
|---|
| CSS Typed OM Level 1> # cssmathmin> |