The CSSValueList interface derives from the web.CSSValue
interface
provides the abstraction of an ordered collection of CSS values.
The CSSValueList interface derives from the `web.CSSValue` interface provides the abstraction of an ordered collection of CSS values.
(item this index)
Method.
The item() method of the web.CSSValueList
interface is used
retrieve a web.CSSValue
by ordinal index.
var cssValue = cssValueList.item(index);
See also: https://developer.mozilla.org/en-US/docs/Web/API/CSSValueList/item
Method. The item() method of the `web.CSSValueList` interface is used retrieve a `web.CSSValue` by ordinal index. `var cssValue = cssValueList.item(index);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/CSSValueList/item`
(length this)
Property.
[Read Only]
The length read-only property of the web.CSSValueList
interface
the number of web.CSSValue
s in the list. The range of valid
of the indices is 0 to length-1 inclusive.
var length = cssValueList.length;
See also: https://developer.mozilla.org/en-US/docs/Web/API/CSSValueList/length
Property. [Read Only] The length read-only property of the `web.CSSValueList` interface the number of `web.CSSValue`s in the list. The range of valid of the indices is 0 to length-1 inclusive. `var length = cssValueList.length;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/CSSValueList/length`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close