Limited availability
The add()
method of the CSSNumericValue
interface adds a supplied number to the CSSNumericValue
.
number
Either a number or a CSSNumericValue
.
TypeError
Thrown if an invalid type was passed to the method.
let mathSum = CSS.px("23")
.add(CSS.percent("4"))
.add(CSS.cm("3"))
.add(CSS.in("9"));
// Prints "calc(23px + 4% + 3cm + 9in)"
console.log(mathSum.toString());
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4