W3cubDocs

/DOM

CSSValueList

The CSSValueList interface derives from the CSSValue interface and provides the abstraction of an ordered collection of CSS values.

Some properties allow an empty list in their syntax. In that case, these properties take the none identifier. So, an empty list means that the property has the value none.

The items in the CSSValueList are accessible via an integral index, starting from 0.

Properties

Inherits properties from its parent, CSSValue.

CSSValueList.length Read only
An unsigned long representing the number of CSSValues in the list.

Methods

CSSValueList.item()
This method is used to retrieve a CSSValue by ordinal index. The order in this collection represents the order of the values in the CSS style property. If index is greater than or equal to the number of values in the list, this returns null.

Specifications

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support No ? ? — 62 ? No ?
length No ? ? — 62 ? No ?
item No ? ? — 62 ? No ?
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support ? ? ? ? — 62 ? ? ?
length ? ? ? ? — 62 ? ? ?
item ? ? ? ? — 62 ? ? ?

See also

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CSSValueList