Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. CSSNumericValue
  4. min()

CSSNumericValue: min() method

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Themin() method of theCSSNumericValue interface returns the lowest value from among thosevalues passed. The passed values must be of the same type.

Syntax

js
min(number1, /* …, */ numberN)

Parameters

number1, …,numberN

Either a number or aCSSNumericValue.

Return value

ACSSUnitValue.

Exceptions

TypeError

Thrown if 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 thefollowing examples illustrate what happens when they are not.

js
// 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

Specification
CSS Typed OM Level 1
# dom-cssnumericvalue-min

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp