The CSSNumericValue interface of the CSS Typed Object Model API represents operations that all numeric values can perform.

MDN Reference

interface CSSNumericValue {
    add(...values: CSSNumberish[]): CSSNumericValue;
    div(...values: CSSNumberish[]): CSSNumericValue;
    equals(...value: CSSNumberish[]): boolean;
    max(...values: CSSNumberish[]): CSSNumericValue;
    min(...values: CSSNumberish[]): CSSNumericValue;
    mul(...values: CSSNumberish[]): CSSNumericValue;
    sub(...values: CSSNumberish[]): CSSNumericValue;
    to(unit: string): CSSUnitValue;
    toString(): string;
    toSum(...units: string[]): CSSMathSum;
    type(): CSSNumericType;
}
Hierarchy
Index

Methods

  • The equals() method of the value are strictly equal.

    MDN Reference

    Parameters

    Returns boolean

  • Returns string

  • The toSum() method of the js-nolint toSum(units) - units - : The units to convert to.

    MDN Reference

    Parameters

    • ...units: string[]

    Returns CSSMathSum

  • The type() method of the CSSNumericValue, one of angle, flex, frequency, length, resolution, percent, percentHint, or time.

    MDN Reference

    Returns CSSNumericType